Played Challenges
Surround the 'z' character with brackets, quotes, and print as formatted string. - 393 entries
Surround the 'z' character with brackets, quotes, and print as formatted string.
- Best score: 17
- Best player score: 17
- Position: #31 / 211
- Number of attempts: 1
Paste a column after a column - 1887 entries
This task is very common while using multi-cursor. What is the elegant vim way ?
- Best score: 14
- Best player score: 18
- Position: #187 / 407
- Number of attempts: 2
Reformat symbols in list - 1321 entries
Saw this in some lecture, easy reformatting using multiple cursor in VS Code
- Best score: 24
- Best player score: 27
- Position: #135 / 294
- Number of attempts: 4
Many duplicates - 1123 entries
Quick and easy
- Best score: 7
- Best player score: 10
- Position: #296 / 364
- Number of attempts: 3
2 quick changes and a numbered list - 543 entries
The ascii will not be lost, but rather numbered in 4 digit blocks with leading zeros.
- Best score: 37
- Best player score: 68
- Position: #108 / 132
- Number of attempts: 2
delete swap - 1378 entries
delete all swap
- Best score: 5
- Best player score: 5
- Position: #241 / 432
- Number of attempts: 9
Put a newline after every 10 lines in vim - 1466 entries
Goal is to put a newline after every 10 lines in vim.
- Best score: 10
- Best player score: 13
- Position: #354 / 494
- Number of attempts: 3
Wikitext headings to markdown - 905 entries
Convert the wikitext headings to markdown.
- Best score: 20
- Best player score: 30
- Position: #125 / 189
- Number of attempts: 6
hello-world-vimgolf - 2185 entries
Simple number generation
- Best score: 10
- Best player score: 10
- Position: #268 / 623
- Number of attempts: 5
Contribute to keyboard mashing - 792 entries
Speak in tongues
- Best score: 17
- Best player score: 23
- Position: #222 / 243
- Number of attempts: 1
Lowercase first characters - 450 entries
This is the (abridged) input for Day 3 in Advent of Code 2019. The output is a format more suitable for Prolog programming: the two lines of input become two lists of pairs, joined together in a wires functor.
- Best score: 33
- Best player score: 43
- Position: #111 / 166
- Number of attempts: 2
simple replacements - 1366 entries
The goal is to see the replacement commands in action.
- Best score: 19
- Best player score: 27
- Position: #263 / 306
- Number of attempts: 2
Inverting Lines - 1677 entries
A simple challenge to invert all lines, except the first.
- Best score: 10
- Best player score: 15
- Position: #344 / 456
- Number of attempts: 2
Modernise code - 1282 entries
Modernise and clean up some C++ code.
- Best score: 34
- Best player score: 44
- Position: #165 / 297
- Number of attempts: 7
swap number pairs - 1945 entries
Swap the numbers in a bunch of 2-element arrays.
- Best score: 16
- Best player score: 32
- Position: #256 / 359
- Number of attempts: 3
HS Final exam vimgolf - 852 entries
Change the initial file to a single line containing all names comma-separated with numbers inside parentheses.
- Best score: 21
- Best player score: 44
- Position: #199 / 224
- Number of attempts: 1
Extend shell script - 103 entries
Just add some more stuff
- Best score: 37
- Best player score: 77
- Position: #35 / 42
- Number of attempts: 2
Easy modification of ssh config - 335 entries
Just add another alias to each worker
- Best score: 24
- Best player score: 61
- Position: #95 / 104
- Number of attempts: 1
Turn the x - 297 entries
Turn the x to a +
- Best score: 19
- Best player score: 28
- Position: #72 / 77
- Number of attempts: 3
Rural Post - 4313 entries
Simple challenge to remove all but the post code on each line
- Best score: 9
- Best player score: 10
- Position: #453 / 1058
- Number of attempts: 2
Satisfy the go linter - 2120 entries
You just came up with this briliant go vars package. But dang, you forgot to add comments to the exported variables. Can you add a comment over each variable with a TODO-placeholder?
- Best score: 20
- Best player score: 28
- Position: #319 / 430
- Number of attempts: 6
xrandr outputs and dashes - 639 entries
uh oh, different video drivers identify display outputs with more dashes. Quick, need to change this xrandr script!
- Best score: 12
- Best player score: 12
- Position: #138 / 211
- Number of attempts: 2
Yo To Hello - 1096 entries
Simply Turn Yo To Hello
- Best score: 10
- Best player score: 12
- Position: #470 / 505
- Number of attempts: 1
Simple, Practical, and Common - 33256 entries
Simple things we do all the time should be able to be done with very few keystrokes, but sometimes I find something I need to do makes me go, "There MUST be a better way." This challenge is just a simple movement and entering text at a certain place.
- Best score: 22
- Best player score: 27
- Position: #4023 / 7337
- Number of attempts: 2
Swap values - 4513 entries
Well, swap the values...
- Best score: 11
- Best player score: 15
- Position: #964 / 1250
- Number of attempts: 3
prepend * to every non-blank line - 6148 entries
Prepend an asterisk to every non-blank line in the input file.
- Best score: 10
- Best player score: 12
- Position: #787 / 1504
- Number of attempts: 2
One number per line - 18574 entries
Just give me the numbers.
- Best score: 14
- Best player score: 27
- Position: #3508 / 3834
- Number of attempts: 1
Right Align Part of the line - 111 entries
The challenge is to right align a part of the line - this is useful in some SQL queries where it's more clear which are the fields displayed
- Best score: 19
- Best player score: 23
- Position: #34 / 36
- Number of attempts: 4
Quote modules - 1035 entries
Complete golang import statement.
- Best score: 21
- Best player score: 32
- Position: #220 / 267
- Number of attempts: 2
Aliases for cd - 834 entries
Create these beautiful aliases with as few strokes as possible. Are you up for the challenge?
- Best score: 30
- Best player score: 55
- Position: #108 / 149
- Number of attempts: 1
Unsemantic linewrapping - 874 entries
[Inspired by a blog post I read: https://scott.mn/2014/02/21/semantic_linewrapping/. Text adapted.] Sometimes when editing a Markdown file, I wrap the lines semantically. Instead of inserting a newline at 70 columns (or whatever), or making paragraphs one long line, I put in newlines at a point that seems logical to me. This may seem silly, but it produces better diffs. Semantic linewrapping also makes editing snappier. I can delete, edit or insert sentences easily using linewise operations. Code-oriented text editors like Vim and [REDACTED] are really good at this kind of manipulation. Editing text that hasn't been wrapped semantically is a pain, though:
- Best score: 9
- Best player score: 15
- Position: #202 / 222
- Number of attempts: 2
V to the i - 4717 entries
Input is 99 V's. Output is 100 i's.
- Best score: 7
- Best player score: 9
- Position: #1725 / 1874
- Number of attempts: 2
Applying same text modification in several lines - 2822 entries
Remove identical text at the beginning of several lines and the closing parenthesis.
- Best score: 12
- Best player score: 16
- Position: #607 / 835
- Number of attempts: 2
Add string initializers to an enum - 851 entries
Change Typescript enum so that it has string initializers.
- Best score: 21
- Best player score: 28
- Position: #215 / 251
- Number of attempts: 2
SCREAMING_SNAKE_CASE to Title Case - 1150 entries
Convert strings in SCREAMING_SNAKE_CASE to Title Case. Examples: EMPLOYEE_NAME -> Employee Name REVENUE_YEAR_TO_DATE -> Revenue Year To Date SALARY -> Salary
- Best score: 19
- Best player score: 30
- Position: #172 / 240
- Number of attempts: 3
remove lines containing the word "reader" - 3503 entries
easy stuff
- Best score: 9
- Best player score: 10
- Position: #837 / 1135
- Number of attempts: 4
Every other line - 2877 entries
AaAaAaA
- Best score: 12
- Best player score: 17
- Position: #521 / 698
- Number of attempts: 1
Extract argument from function - 2292 entries
The aim is to see if you can do some refactoring very fast.
- Best score: 13
- Best player score: 17
- Position: #628 / 740
- Number of attempts: 1
Start coding format - 145 entries
I used to start coding with following format: int main(){ -(cursor here) }
- Best score: 22
- Best player score: 25
- Position: #65 / 69
- Number of attempts: 4
Search and Replace 0 - 4768 entries
Replace every instance of 'aaa' with 'xaaax'.
- Best score: 12
- Best player score: 20
- Position: #1461 / 1580
- Number of attempts: 1
Just the middle - 11331 entries
Delete the instructions at the top and bottom.
- Best score: 7
- Best player score: 8
- Position: #3179 / 4156
- Number of attempts: 10
Python Hello World! Reformatting - 930 entries
A novice Python using prints Hello World! and a pro shows him different way. Using vim to get into pro style from novice, win the challenge.
- Best score: 39
- Best player score: 49
- Position: #328 / 361
- Number of attempts: 4
Remember VimGolf Rules ! - 255 entries
Rules, ... and don't forget !
- Best score: 7
- Best player score: 8
- Position: #125 / 137
- Number of attempts: 2
Turn a ninja to case-insensitive [Nn][Ii][Nn][Jj][Aa] regexp! - 62 entries
I bumped into this in a dailywtf code: http://pastebin.com/QApa5ycS I didn't want to translate a string whenever I wanted to be [Ss][Aa][Rr][Cc][Aa][Ss][Tt][Ii][Cc] on slack, so I figured a script (python, sed, whatever) would be helpful. Well, or a few vim keystroke!
- Best score: 18
- Best player score: 18
- Position: #30 / 36
- Number of attempts: 3
Basic renumbering - 5521 entries
Renumbering Basic.
- Best score: 11
- Best player score: 14
- Position: #494 / 1251
- Number of attempts: 4
create arrows in a list - 100 entries
Add arrow at same distance
- Best score: 10
- Best player score: 27
- Position: #69 / 69
- Number of attempts: 3
Create Leading Zeros - 208 entries
Create leading zeros only for id columns. Please use generic approach!
- Best score: 23
- Best player score: 26
- Position: #37 / 78
- Number of attempts: 3
Fiddle percentages into real numbers - 837 entries
Get rid of the '%' symbols and shift the decimal place. This is the easier version - all the columns line up.
- Best score: 13
- Best player score: 18
- Position: #248 / 285
- Number of attempts: 5
Add to end of each line... kinda - 316 entries
Visual-block mode can be used to add something to the end of each line, even if they are of differing lengths. However, what if it's not quite at the end?
- Best score: 12
- Best player score: 15
- Position: #162 / 166
- Number of attempts: 2
Combines all items - 302 entries
For each line that starts with the same number I want to combine its contents
- Best score: 9
- Best player score: 10
- Position: #128 / 136
- Number of attempts: 2
Wrap text in quotes - 349 entries
All the blocks of text should be wrapped in quotation marks.
- Best score: 16
- Best player score: 19
- Position: #95 / 120
- Number of attempts: 1
underscore_to_camelCase - 160 entries
Pointy haired boss decided we need to switch to camelCase. Let's get this over with.
- Best score: 14
- Best player score: 16
- Position: #66 / 79
- Number of attempts: 5
Vice versa - 7708 entries
Little role switching.
- Best score: 12
- Best player score: 29
- Position: #1998 / 2084
- Number of attempts: 2
lipsum lines - 248 entries
Convert a quoted block of text into strings in a list.
- Best score: 28
- Best player score: 35
- Position: #69 / 90
- Number of attempts: 1
Angular naming conventions - 287 entries
In angular, a directive name follows the camelCase convention. When the directive is used in an HTML template, the words are instead separated by a dash. Go from to the other the fastest!
- Best score: 18
- Best player score: 19
- Position: #60 / 112
- Number of attempts: 2
One to Ten - 2140 entries
Generate the sequence of numbers from 1 to 10, one number per line. Inspired by this Reddit thread: https://redd.it/ak4it2
- Best score: 12
- Best player score: 15
- Position: #532 / 655
- Number of attempts: 1
Line under headers - 1964 entries
Put a line under each header, and remove the other markdown formatting.
- Best score: 24
- Best player score: 31
- Position: #301 / 485
- Number of attempts: 4
simple format (3) - 67 entries
reverse two column values!
- Best score: 34
- Best player score: 66
- Position: #18 / 20
- Number of attempts: 3
Delete to the end of the current line - 730 entries
Delete to the end of the current line, but keep the character under the cursor.
- Best score: 5
- Best player score: 5
- Position: #251 / 360
- Number of attempts: 2
change parenthesis - 278 entries
change the pair of braces into a pair of parentheses
- Best score: 9
- Best player score: 10
- Position: #145 / 156
- Number of attempts: 2
Assign numbers to fields - 98 entries
You are given a list of space-separated strings. Add an increasing numeric prefix to each one.
- Best score: 19
- Best player score: 29
- Position: #52 / 56
- Number of attempts: 1
unknown command - 155 entries
I want change 5 words
- Best score: 7
- Best player score: 10
- Position: #70 / 81
- Number of attempts: 1
Swap assigned value - 600 entries
Simple problem but looking for interesting solutions.
- Best score: 10
- Best player score: 10
- Position: #105 / 244
- Number of attempts: 6
Change your calendar - 352 entries
Happy New Year!
- Best score: 18
- Best player score: 41
- Position: #77 / 83
- Number of attempts: 3
Collect List - 4238 entries
Convert to comma separated list.
- Best score: 12
- Best player score: 15
- Position: #741 / 1180
- Number of attempts: 2
VimGolfNight - 524 entries
Based on "The name of the game".
- Best score: 12
- Best player score: 12
- Position: #289 / 339
- Number of attempts: 4
camel riding - 769 entries
add a prefix on some camelCase variables
- Best score: 15
- Best player score: 17
- Position: #195 / 274
- Number of attempts: 2
swap or reverse - 110 entries
Try to swap or reverse the line as needed.
- Best score: 16
- Best player score: 16
- Position: #52 / 64
- Number of attempts: 5
Logging with key - 301 entries
Sometimes it is better to log with meaningful key
- Best score: 21
- Best player score: 40
- Position: #77 / 86
- Number of attempts: 2
Space out the alphabet - 1610 entries
Put 3 spaces between adjacent letters.
- Best score: 15
- Best player score: 33
- Position: #426 / 438
- Number of attempts: 3
remove all lines in first part - 190 entries
From the second part, remove all lines in the first part. It can be useful when you have done something from a long list, you want to know what is not done yet!
- Best score: 13
- Best player score: 25
- Position: #63 / 65
- Number of attempts: 1
Merge blank lines and properly capitalize - 72 entries
Here you need complete 2 tasks: 1. Remove all unwanted continuous blank lines and leave only 1 blank line between paragraphs. 2. Properly capitalize the sentences.
- Best score: 21
- Best player score: 50
- Position: #19 / 22
- Number of attempts: 3
Fill visual area - 82 entries
Just have fun!
- Best score: 20
- Best player score: 46
- Position: #21 / 36
- Number of attempts: 2
Line 'em up! - 387 entries
It can be so hard to keep everything neatly lined-up. Somebody clearly hasn't bothered here. Tidy it up, please!
- Best score: 17
- Best player score: 22
- Position: #77 / 108
- Number of attempts: 3
Shuffled numbers - 228 entries
Each number is paired with the number it should follow. That's enough information to put them in order.
- Best score: 15
- Best player score: 17
- Position: #78 / 92
- Number of attempts: 3
Mute the second method of this script - 447 entries
prepend a # infront of every line of the second method
- Best score: 9
- Best player score: 11
- Position: #230 / 237
- Number of attempts: 3
Remove hard line breaks - 64 entries
Text files with Hard breaks are not good for e-readers. We need remove all hard line breaks and have long lines.
- Best score: 10
- Best player score: 27
- Position: #28 / 30
- Number of attempts: 3
Custom McCarthy sequence - 36 entries
Generate the first one hundred and twenty numbers (starting with n=1). See here for some inspiration: http://en.wikipedia.org/wiki/McCarthy_91_function
- Best score: 15
- Best player score: 19
- Position: #9 / 15
- Number of attempts: 1
Test everything! - 159 entries
... and build the desired input data structure. Transform a list of values into a non-trivial format.
- Best score: 22
- Best player score: 33
- Position: #32 / 51
- Number of attempts: 6
Condensed Cases - 777 entries
Apple's new programming language, Swift, allows two style of case statements: 1) one Enum case on each line, or 2) multiple Enum cases on a single line. Convert the following from the first case (no pun intended) to the second type.
- Best score: 12
- Best player score: 16
- Position: #187 / 240
- Number of attempts: 2
Pretty format for variable declarations - 152 entries
Project standards demand the equal signs must be aligned for better readability.
- Best score: 13
- Best player score: 21
- Position: #52 / 60
- Number of attempts: 2
Happy TvvO - 396 entries
Don’t forget the past, learn from it. Happy New Year.
- Best score: 12
- Best player score: 12
- Position: #151 / 197
- Number of attempts: 2
I forgot quotes - 15890 entries
Oops.
- Best score: 10
- Best player score: 15
- Position: #2367 / 4152
- Number of attempts: 2
Shift down - 193 entries
Number words are back.
- Best score: 19
- Best player score: 37
- Position: #65 / 67
- Number of attempts: 2
learn vim in short time - 228 entries
so happy to learn vim.because vim is awesome
- Best score: 8
- Best player score: 9
- Position: #149 / 156
- Number of attempts: 1
vim1001 - 275 entries
change number 1001 into a "vim1001 sequence". (My first challenge, hope it is not too bad... )
- Best score: 17
- Best player score: 23
- Position: #72 / 107
- Number of attempts: 1
-a-b-c- - 3160 entries
Put hyphens everywhere.
- Best score: 13
- Best player score: 15
- Position: #728 / 1124
- Number of attempts: 1
Count both ways - 987 entries
Right AND down.
- Best score: 13
- Best player score: 20
- Position: #336 / 348
- Number of attempts: 2
NBCU Weekly Challenge - Test - 243 entries
Just testing.
- Best score: 18
- Best player score: 18
- Position: #63 / 114
- Number of attempts: 4
Change name of a variable - 169 entries
Replace the name of the $variable with the fastest move possible. The challenge is having a command that allow you to easily change the variable name even if its indented.
- Best score: 9
- Best player score: 9
- Position: #127 / 132
- Number of attempts: 1
Lisp Condense - 438 entries
Reduce 4 cons selection operations down to one function call.
- Best score: 13
- Best player score: 16
- Position: #117 / 154
- Number of attempts: 4
Gray area - 720 entries
It's a golf metaphor or something.
- Best score: 11
- Best player score: 14
- Position: #233 / 266
- Number of attempts: 1
Refactor static member invocation - 198 entries
Someone used a static method. Refactor the method into a static import while fixing the assertion.
- Best score: 28
- Best player score: 42
- Position: #54 / 63
- Number of attempts: 4
Neither Fizz nor Buzz - 226 entries
Not your regular increment macro! The gaps are tricky.
- Best score: 13
- Best player score: 20
- Position: #77 / 99
- Number of attempts: 3
Do you demand a shrubbery? - 1108 entries
Use :redir and crush the emacsgolfers.
- Best score: 15
- Best player score: 32
- Position: #287 / 293
- Number of attempts: 1
Don't know what this is - 1961 entries
Replace contents of brackets with matching number of spaces. Don't ask what the format's supposed to be.
- Best score: 11
- Best player score: 14
- Position: #373 / 576
- Number of attempts: 1
Where should I put the Newline? - 857 entries
Help me put the newline.
- Best score: 7
- Best player score: 8
- Position: #405 / 429
- Number of attempts: 2
A HAPPY NEW YEAR 2014 ! - 10595 entries
A HAPPY NEW YEAR 2014 !
- Best score: 11
- Best player score: 12
- Position: #2494 / 3657
- Number of attempts: 3
Counting in binary - 447 entries
"a" represents 0; "A" represents 1. Start from zero and count to 15.
- Best score: 16
- Best player score: 46
- Position: #89 / 112
- Number of attempts: 4
Letter case trickery - 1588 entries
This file is in a downright esoteric format, consisting of hexadecimal numbers, non-hexadecimal keywords, and "Z" indicating end-of-line. Make the hexadecimal numbers lowercase.
- Best score: 9
- Best player score: 14
- Position: #438 / 509
- Number of attempts: 2
quotes inside quotes - 3105 entries
taken from tip 85 of the very good book 'Practical Vim: Edit Text at the Speed of Thought' ! I'd be interested what people use :)
- Best score: 14
- Best player score: 17
- Position: #938 / 1066
- Number of attempts: 2
Sort the VimGolf challenges by popularity - 344 entries
"Sort by popularity" is a good order to play the challenges. Not perfect, but you could do a lot worse. ;) Input is a sample copy-pasted from vimgolf.com. Some of the challenge names have digits that will get in your way, so read ":help :sort" for hints on sorting with a regex. When you're done, try your solution on the full list!
- Best score: 15
- Best player score: 21
- Position: #94 / 104
- Number of attempts: 4
Words in parens - 12824 entries
We should all ace this, right?
- Best score: 13
- Best player score: 16
- Position: #2517 / 3939
- Number of attempts: 2
Pairs of numbers - 349 entries
Line 1 represents x, line 2 y-data. Bring the corresponding pairs in the form "[x,y]\n"
- Best score: 26
- Best player score: 31
- Position: #47 / 132
- Number of attempts: 2
paste indent correction - JS - 102 entries
You copy some javascript code from a website and paste it into vim, it does not look good!
- Best score: 16
- Best player score: 32
- Position: #55 / 57
- Number of attempts: 3
Delete unwanted lines - 392 entries
Delete all lines which does not end in "o.."
- Best score: 9
- Best player score: 9
- Position: #194 / 224
- Number of attempts: 2
Word frequency alignment - 273 entries
You've got to align the second column, but the spacing is inconvenient and there are nasty tabs in the way. If you're a "real Vim ninja," this could be very quick indeed...
- Best score: 5
- Best player score: 5
- Position: #119 / 156
- Number of attempts: 5
Minimalist Limerick - 514 entries
Reproduce this lovely poem.
- Best score: 31
- Best player score: 39
- Position: #130 / 170
- Number of attempts: 4
Coordinates placeholder - 62 entries
Place coordinates instead of target search.
- Best score: 22
- Best player score: 28
- Position: #34 / 36
- Number of attempts: 1
fib.c cleanup - 66 entries
cleanup the file
- Best score: 15
- Best player score: 18
- Position: #52 / 54
- Number of attempts: 1
REDRUM - 149 entries
If you remember "The Shinning", the first time you saw the bloody word REDRUM you probably thinked "What the Hell is that?" Well, then you know that you need a little help from a looking-glass to make sense of it. Now it's time to use vim like a mirror to reveal the message.
- Best score: 14
- Best player score: 29
- Position: #56 / 61
- Number of attempts: 2
Enumerate words - 242 entries
Enumerate the unique words in order.
- Best score: 23
- Best player score: 41
- Position: #84 / 87
- Number of attempts: 1
Circle in a square - 140 entries
Probably looks more like "Egg in a rectangle" in most fonts, but it's actually 23x23.
- Best score: 23
- Best player score: 50
- Position: #32 / 52
- Number of attempts: 4
Block Fun 1 - 188 entries
Manipulate the columns to produce desired result.
- Best score: 14
- Best player score: 23
- Position: #46 / 72
- Number of attempts: 1
Groups magic - 146 entries
Regexp or macros for string converting: (a) -> ___ (abc) -> ____ (abcd) -> ______ All in the '(' replace to _ multiply by char count + ()
- Best score: 13
- Best player score: 14
- Position: #69 / 88
- Number of attempts: 1
Prefixes and suffixes - 591 entries
Generate all prefixes of "vimchallenge", then all suffixes.
- Best score: 17
- Best player score: 29
- Position: #145 / 192
- Number of attempts: 2
Sort by sum of numbers in a line(?) - 55 entries
The lines with the biggest sums need to be at the top. The sums are on the right, which makes life hard. Maybe you can find a feature that will do all the work for you...
- Best score: 15
- Best player score: 16
- Position: #34 / 35
- Number of attempts: 2
abcd > a b c d - 279 entries
transform the single spaces into 4 spaces repeat for each line
- Best score: 15
- Best player score: 15
- Position: #198 / 217
- Number of attempts: 1
Readable Rubyhash - 243 entries
Rubyists talk about being cutting edge but how many are using 1.9 in production? Time to convert those verbose 1.8 hashes in to symbolic, succinct 1.9 beauties!
- Best score: 23
- Best player score: 29
- Position: #64 / 91
- Number of attempts: 1
NATO phonetic alphabet - 498 entries
Transform the series of words into a list.
- Best score: 19
- Best player score: 37
- Position: #187 / 189
- Number of attempts: 4
SFD-ROC: The Quick Brown Fox - 168 entries
Someone has vandalized our text (again). Please fix to read: The Quick Brown Fox Jumps Over The Lazy Dog.
- Best score: 24
- Best player score: 29
- Position: #92 / 100
- Number of attempts: 3
The Quick Brown Fox Jumps Over The Lazy Vim - 398 entries
Someone has vandalized this text file and replaced the beginning character of one word in each line with a Big "X." Please remove the big X's, and fix each line to read "The Quick Brown Fox Jumps Over The Lazy Dog."
- Best score: 8
- Best player score: 11
- Position: #156 / 186
- Number of attempts: 1
The name of the game - 643 entries
End up with the name of the game.
- Best score: 11
- Best player score: 11
- Position: #276 / 353
- Number of attempts: 1
lamb had a little Mary - 570 entries
"Mary" and "lamb" are swapped. Unswap them. Fast as you can.
- Best score: 16
- Best player score: 42
- Position: #140 / 160
- Number of attempts: 1
SFD-ROC: vimvimvim - 1550 entries
Oh no, this line is longer than 80 chars... put each 'vim' on a new line.
- Best score: 8
- Best player score: 15
- Position: #408 / 435
- Number of attempts: 1
Stairs Indenting - 442 entries
Indent each line with <line number> whitespaces.
- Best score: 12
- Best player score: 20
- Position: #177 / 191
- Number of attempts: 1
Unwrap the text of an email message - 182 entries
Reverse of "Wrap the text of an email message to 79 characters". gq and gw are great for wrapping paragraphs. But sometimes other programs choke on your wrapped lines. What's the best way to un-gq?
- Best score: 16
- Best player score: 24
- Position: #53 / 72
- Number of attempts: 2
Array Transposition - 177 entries
Transpose four arrays into two.
- Best score: 27
- Best player score: 34
- Position: #28 / 53
- Number of attempts: 2
Saving the hashes(#) - 1978 entries
The following file is copied from vimcasts.org(Its only for learning purpose,hope the site owner doesn't mind it), its probably the easiest of challenges.Our goal is to delete every line which doesn't contain a hash signs. The remaining hash signs with numbers are then sorted to get the final output.
- Best score: 20
- Best player score: 29
- Position: #351 / 471
- Number of attempts: 3
SFD-ROC: ROT13 Phonics - 96 entries
A is for apple, b is for ball, etc... This familiar phonics poem has been rotated 13 characters. Make the letter match the word.
- Best score: 6
- Best player score: 11
- Position: #66 / 70
- Number of attempts: 5
Let's play some Ivmgolf - 1068 entries
Oops, I spelled that wrong.
- Best score: 7
- Best player score: 10
- Position: #360 / 436
- Number of attempts: 2
Numbering a List - 1849 entries
Pretty simple, number the list.
- Best score: 13
- Best player score: 22
- Position: #438 / 636
- Number of attempts: 1
Shebangs for all - 1860 entries
We've all seen or used a shebang once or twice. Ditch the specific paths and leave just a dynamic Ruby and Python bath behind.
- Best score: 11
- Best player score: 30
- Position: #481 / 488
- Number of attempts: 3
Dumb to smart - 93 entries
Turn dumb quote to smart vim's way.
- Best score: 28
- Best player score: 39
- Position: #44 / 54
- Number of attempts: 2
Change the content of a string - 1442 entries
This docstring is a complete lie. Fix it.
- Best score: 22
- Best player score: 31
- Position: #508 / 546
- Number of attempts: 1
Sort and add attributes - 1287 entries
Sort the states and add the attribute country to each record.
- Best score: 33
- Best player score: 41
- Position: #483 / 515
- Number of attempts: 5
Reconstruct the Sentence - 1281 entries
Get the sentence back in the proper order, remove duplicate lines, and then combine the separate lines into one.
- Best score: 20
- Best player score: 34
- Position: #354 / 367
- Number of attempts: 5
Flodder-challenge - 1038 entries
Replace the text the most efficient and win!
- Best score: 27
- Best player score: 46
- Position: #258 / 298
- Number of attempts: 1
Simple text editing with Vim - 12045 entries
Make the pairs of lines match up by making each second line same as first
- Best score: 13
- Best player score: 24
- Position: #2980 / 3528
- Number of attempts: 2
Olivier Bégassat
Twitter2: