enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. A keyboard so real you can almost TASTE it - code golf

    codegolf.stackexchange.com/questions/103033

    SHIFT zxcvbnm,./SHIFT. It enters it pretty straightforward, but there are a few tricks that we use to save characters. For example, ¬19 enters "123456789", ³ enters three spaces, and we duplicate the shift so that we don't need to enter it multiple times. Note how the letters are lowercase here.

  3. The Keyboard Shift Cipher - Code Golf Stack Exchange

    codegolf.stackexchange.com/questions/154922/the-keyboard-shift-cipher

    Using a standard, simplified QWERTY keyboard (as shown below): 1234567890. QWERTYUIOP. ASDFGHJKL. ZXCVBNM. Perform the following operation: Find the original row that each character is in on the keyboard. Replace the letter with the correct shifted equivalent for n based on its original position + n.

  4. You could do "QWERTYUIOP<br>ASDFGHJKL<br>ZXCVBNM"¬¸r'Z" Z (<br> represents a line break), but that requires two non-keyboard chars, so I guess it isn't legal. But at least you can remove the comma, as it is automatically inserted. \$\endgroup\$

  5. Help Alice fix her text! - Code Golf Stack Exchange

    codegolf.stackexchange.com/questions/230873

    Uiua, 39 characters/45 bytes. Try it online. " ,mnbvcxz;lkjhgfdsa[poiuytrewq" is the entire keyboard, plus the shifted characters, plus two spaces, written in reverse (explained later). This string is pushed to the stack first, then: : # Flip the top two stack values, placing the keyboard string under the input.

  6. Newest 'keyboard' Questions - Code Golf Stack Exchange

    codegolf.stackexchange.com/questions/tagged/keyboard

    Stack Exchange Network. Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.

  7. Longest word using a single row of the qwerty keyboard

    codegolf.stackexchange.com/questions/75674

    33. The three rows of the qwerty keyboard are qwertyuiop, asdfghjkl and zxcvbnm. Your task is to find the longest word that can be typed using only one row of the keyboard, from a given list of words. Sample input 1. Output. (Of the given words, only gas, writer and twerp can be written using a single row, and writer is the longest) The words ...

  8. Given an input, move it along the keyboard by N characters

    codegolf.stackexchange.com/questions/50336

    The Challenge: Given any input that can be typed on a keyboard, move the text along by N chars. Here is the QWERTY keyboard to be used. You can ignore the modifier keys (Shift, Caps, Enter, Delete and Tab). Once you reach one side (for example |) loop back round, so | goes to Q if N = 1. Spaces do not have to be moved along (they go back round ...

  9. Programming with a Sporadic Shift Key - Code Golf Stack Exchange

    codegolf.stackexchange.com/questions/39952/programming-with-a-sporadic-shift-key

    The last 3 keys are Enter, Tab, and Space, which are the same shifted and unshifted. A sequence of N of these characters has 2 N - (whitespace char count) ways it might have been output if you had typed them with your faulty keyboard. For example, typing A Space m might have yielded a m or A m or a M or A M. Write a program these characters and ...

  10. Keyboard Encryption - Code Golf Stack Exchange

    codegolf.stackexchange.com/questions/113280/keyboard-encryption

    Challenge. Given a string with any characters a-z or A-Z, return an 'encrypted' string, where all characters are replaced by the character next to it (assuming a QWERTY keyboard). Case (uppercase, lowercase) does not matter. The input will only have characters a-z and A-Z. Shortest code in bytes wins.

  11. Fix my Fat Fingers - Code Golf Stack Exchange

    codegolf.stackexchange.com/questions/111132

    Explanation. Most of the program generates the keyboard. i enters insert mode and every character following it is printed to the buffer. But there is a small quirk here, ¬19 inserts characters between 1 and 9. The program exits insert mode at the <esc>. And then here /<c-r>a it searches for the argument in the buffer.