Played Challenges
Surround the 'z' character with brackets, quotes, and print as formatted string. - 554 entries
Surround the 'z' character with brackets, quotes, and print as formatted string.
- Best score: 17
- Best player score: 17
- Position: #31 / 309
- Number of attempts: 1
Paste a column after a column - 2537 entries
This task is very common while using multi-cursor. What is the elegant vim way ?
- Best score: 14
- Best player score: 18
- Position: #250 / 553
- Number of attempts: 2
Reformat symbols in list - 1621 entries
Saw this in some lecture, easy reformatting using multiple cursor in VS Code
- Best score: 24
- Best player score: 27
- Position: #158 / 348
- Number of attempts: 4
Many duplicates - 1445 entries
Quick and easy
- Best score: 7
- Best player score: 10
- Position: #372 / 468
- Number of attempts: 3
2 quick changes and a numbered list - 647 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: #123 / 154
- Number of attempts: 2
delete swap - 1786 entries
delete all swap
- Best score: 5
- Best player score: 5
- Position: #241 / 555
- Number of attempts: 9
Put a newline after every 10 lines in vim - 1657 entries
Goal is to put a newline after every 10 lines in vim.
- Best score: 10
- Best player score: 13
- Position: #387 / 556
- Number of attempts: 3
Wikitext headings to markdown - 987 entries
Convert the wikitext headings to markdown.
- Best score: 20
- Best player score: 30
- Position: #136 / 209
- Number of attempts: 6
hello-world-vimgolf - 2499 entries
Simple number generation
- Best score: 10
- Best player score: 10
- Position: #268 / 708
- Number of attempts: 5
Contribute to keyboard mashing - 890 entries
Speak in tongues
- Best score: 17
- Best player score: 23
- Position: #248 / 270
- Number of attempts: 1
Lowercase first characters - 487 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: #118 / 183
- Number of attempts: 2
simple replacements - 1753 entries
The goal is to see the replacement commands in action.
- Best score: 19
- Best player score: 27
- Position: #309 / 380
- Number of attempts: 2
Inverting Lines - 1900 entries
A simple challenge to invert all lines, except the first.
- Best score: 10
- Best player score: 15
- Position: #390 / 511
- Number of attempts: 2
Modernise code - 1400 entries
Modernise and clean up some C++ code.
- Best score: 34
- Best player score: 44
- Position: #182 / 323
- Number of attempts: 7
swap number pairs - 2103 entries
Swap the numbers in a bunch of 2-element arrays.
- Best score: 16
- Best player score: 32
- Position: #271 / 380
- Number of attempts: 3
HS Final exam vimgolf - 897 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: #210 / 236
- Number of attempts: 1
Extend shell script - 134 entries
Just add some more stuff
- Best score: 37
- Best player score: 77
- Position: #38 / 45
- Number of attempts: 2
Easy modification of ssh config - 371 entries
Just add another alias to each worker
- Best score: 24
- Best player score: 61
- Position: #100 / 112
- Number of attempts: 1
Turn the x - 328 entries
Turn the x to a +
- Best score: 19
- Best player score: 28
- Position: #77 / 82
- Number of attempts: 3
Rural Post - 4479 entries
Simple challenge to remove all but the post code on each line
- Best score: 9
- Best player score: 10
- Position: #466 / 1097
- Number of attempts: 2
Satisfy the go linter - 2391 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: #352 / 471
- Number of attempts: 6
xrandr outputs and dashes - 704 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 / 221
- Number of attempts: 2
Yo To Hello - 1130 entries
Simply Turn Yo To Hello
- Best score: 10
- Best player score: 12
- Position: #486 / 524
- Number of attempts: 1
Simple, Practical, and Common - 33617 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: #4064 / 7421
- Number of attempts: 2
Swap values - 4616 entries
Well, swap the values...
- Best score: 11
- Best player score: 15
- Position: #977 / 1268
- Number of attempts: 3
prepend * to every non-blank line - 6312 entries
Prepend an asterisk to every non-blank line in the input file.
- Best score: 10
- Best player score: 12
- Position: #808 / 1537
- Number of attempts: 2
One number per line - 18727 entries
Just give me the numbers.
- Best score: 14
- Best player score: 27
- Position: #3532 / 3864
- Number of attempts: 1
Right Align Part of the line - 133 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: #38 / 42
- Number of attempts: 4
Quote modules - 1084 entries
Complete golang import statement.
- Best score: 21
- Best player score: 32
- Position: #232 / 281
- Number of attempts: 2
Aliases for cd - 879 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: #113 / 155
- Number of attempts: 1
Unsemantic linewrapping - 928 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: #210 / 231
- Number of attempts: 2
V to the i - 4802 entries
Input is 99 V's. Output is 100 i's.
- Best score: 7
- Best player score: 9
- Position: #1740 / 1893
- Number of attempts: 2
Applying same text modification in several lines - 2880 entries
Remove identical text at the beginning of several lines and the closing parenthesis.
- Best score: 12
- Best player score: 16
- Position: #618 / 851
- Number of attempts: 2
Add string initializers to an enum - 872 entries
Change Typescript enum so that it has string initializers.
- Best score: 21
- Best player score: 28
- Position: #220 / 258
- Number of attempts: 2
SCREAMING_SNAKE_CASE to Title Case - 1214 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: #178 / 249
- Number of attempts: 3
remove lines containing the word "reader" - 3586 entries
easy stuff
- Best score: 9
- Best player score: 10
- Position: #849 / 1162
- Number of attempts: 4
Every other line - 2910 entries
AaAaAaA
- Best score: 12
- Best player score: 17
- Position: #524 / 703
- Number of attempts: 1
Extract argument from function - 2357 entries
The aim is to see if you can do some refactoring very fast.
- Best score: 13
- Best player score: 17
- Position: #637 / 753
- Number of attempts: 1
Start coding format - 155 entries
I used to start coding with following format: int main(){ -(cursor here) }
- Best score: 22
- Best player score: 25
- Position: #67 / 72
- Number of attempts: 4
Search and Replace 0 - 4989 entries
Replace every instance of 'aaa' with 'xaaax'.
- Best score: 12
- Best player score: 20
- Position: #1503 / 1624
- Number of attempts: 1
Just the middle - 11454 entries
Delete the instructions at the top and bottom.
- Best score: 7
- Best player score: 8
- Position: #3188 / 4197
- Number of attempts: 10
Python Hello World! Reformatting - 994 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: #343 / 380
- Number of attempts: 4
Remember VimGolf Rules ! - 261 entries
Rules, ... and don't forget !
- Best score: 7
- Best player score: 8
- Position: #126 / 141
- Number of attempts: 2
Turn a ninja to case-insensitive [Nn][Ii][Nn][Jj][Aa] regexp! - 67 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 / 39
- Number of attempts: 3
Basic renumbering - 5648 entries
Renumbering Basic.
- Best score: 11
- Best player score: 14
- Position: #502 / 1264
- Number of attempts: 4
create arrows in a list - 117 entries
Add arrow at same distance
- Best score: 10
- Best player score: 27
- Position: #72 / 73
- Number of attempts: 3
Create Leading Zeros - 241 entries
Create leading zeros only for id columns. Please use generic approach!
- Best score: 23
- Best player score: 26
- Position: #40 / 82
- Number of attempts: 3
Fiddle percentages into real numbers - 865 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: #253 / 291
- Number of attempts: 5
Add to end of each line... kinda - 333 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: #169 / 174
- Number of attempts: 2
Combines all items - 313 entries
For each line that starts with the same number I want to combine its contents
- Best score: 9
- Best player score: 10
- Position: #131 / 140
- Number of attempts: 2
Wrap text in quotes - 368 entries
All the blocks of text should be wrapped in quotation marks.
- Best score: 16
- Best player score: 19
- Position: #97 / 122
- Number of attempts: 1
underscore_to_camelCase - 173 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: #69 / 82
- Number of attempts: 5
Vice versa - 7907 entries
Little role switching.
- Best score: 12
- Best player score: 29
- Position: #2035 / 2128
- Number of attempts: 2
lipsum lines - 278 entries
Convert a quoted block of text into strings in a list.
- Best score: 28
- Best player score: 35
- Position: #74 / 95
- Number of attempts: 1
Angular naming conventions - 320 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: #63 / 118
- Number of attempts: 2
One to Ten - 2219 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: #547 / 672
- Number of attempts: 1
Line under headers - 2044 entries
Put a line under each header, and remove the other markdown formatting.
- Best score: 24
- Best player score: 31
- Position: #309 / 503
- Number of attempts: 4
simple format (3) - 86 entries
reverse two column values!
- Best score: 34
- Best player score: 66
- Position: #22 / 24
- Number of attempts: 3
Delete to the end of the current line - 812 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 / 391
- Number of attempts: 2
change parenthesis - 296 entries
change the pair of braces into a pair of parentheses
- Best score: 9
- Best player score: 10
- Position: #149 / 161
- Number of attempts: 2
Assign numbers to fields - 116 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: #58 / 62
- Number of attempts: 1
unknown command - 167 entries
I want change 5 words
- Best score: 7
- Best player score: 10
- Position: #74 / 87
- Number of attempts: 1
Swap assigned value - 647 entries
Simple problem but looking for interesting solutions.
- Best score: 10
- Best player score: 10
- Position: #105 / 254
- Number of attempts: 6
Change your calendar - 392 entries
Happy New Year!
- Best score: 18
- Best player score: 41
- Position: #79 / 87
- Number of attempts: 3
Collect List - 4298 entries
Convert to comma separated list.
- Best score: 12
- Best player score: 15
- Position: #748 / 1190
- Number of attempts: 2
VimGolfNight - 560 entries
Based on "The name of the game".
- Best score: 12
- Best player score: 12
- Position: #289 / 347
- Number of attempts: 4
camel riding - 793 entries
add a prefix on some camelCase variables
- Best score: 15
- Best player score: 17
- Position: #198 / 281
- Number of attempts: 2
swap or reverse - 126 entries
Try to swap or reverse the line as needed.
- Best score: 16
- Best player score: 16
- Position: #52 / 69
- Number of attempts: 5
Logging with key - 328 entries
Sometimes it is better to log with meaningful key
- Best score: 21
- Best player score: 40
- Position: #79 / 88
- Number of attempts: 2
Space out the alphabet - 1657 entries
Put 3 spaces between adjacent letters.
- Best score: 15
- Best player score: 33
- Position: #432 / 444
- Number of attempts: 3
remove all lines in first part - 211 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: #65 / 67
- Number of attempts: 1
Merge blank lines and properly capitalize - 82 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: #21 / 24
- Number of attempts: 3
Fill visual area - 91 entries
Just have fun!
- Best score: 20
- Best player score: 46
- Position: #22 / 38
- Number of attempts: 2
Line 'em up! - 421 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: #81 / 114
- Number of attempts: 3
Shuffled numbers - 246 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: #82 / 96
- Number of attempts: 3
Mute the second method of this script - 455 entries
prepend a # infront of every line of the second method
- Best score: 8
- Best player score: 11
- Position: #232 / 239
- Number of attempts: 3
Remove hard line breaks - 74 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: #32 / 34
- Number of attempts: 3
Custom McCarthy sequence - 44 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: #11 / 17
- Number of attempts: 1
Test everything! - 186 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: #35 / 54
- Number of attempts: 6
Condensed Cases - 804 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: #192 / 247
- Number of attempts: 2
Pretty format for variable declarations - 170 entries
Project standards demand the equal signs must be aligned for better readability.
- Best score: 13
- Best player score: 21
- Position: #56 / 64
- Number of attempts: 2
Happy TvvO - 427 entries
Don’t forget the past, learn from it. Happy New Year.
- Best score: 12
- Best player score: 12
- Position: #151 / 206
- Number of attempts: 2
I forgot quotes - 15983 entries
Oops.
- Best score: 10
- Best player score: 15
- Position: #2382 / 4180
- Number of attempts: 2
Shift down - 209 entries
Number words are back.
- Best score: 19
- Best player score: 37
- Position: #67 / 69
- Number of attempts: 2
learn vim in short time - 240 entries
so happy to learn vim.because vim is awesome
- Best score: 8
- Best player score: 9
- Position: #153 / 161
- Number of attempts: 1
vim1001 - 307 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: #74 / 110
- Number of attempts: 1
-a-b-c- - 3213 entries
Put hyphens everywhere.
- Best score: 13
- Best player score: 15
- Position: #735 / 1137
- Number of attempts: 1
Count both ways - 1022 entries
Right AND down.
- Best score: 13
- Best player score: 20
- Position: #342 / 354
- Number of attempts: 2
NBCU Weekly Challenge - Test - 253 entries
Just testing.
- Best score: 18
- Best player score: 18
- Position: #63 / 116
- Number of attempts: 4
Change name of a variable - 179 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 / 137
- Number of attempts: 1
Lisp Condense - 460 entries
Reduce 4 cons selection operations down to one function call.
- Best score: 13
- Best player score: 16
- Position: #120 / 158
- Number of attempts: 4
Gray area - 747 entries
It's a golf metaphor or something.
- Best score: 11
- Best player score: 14
- Position: #237 / 271
- Number of attempts: 1
Refactor static member invocation - 199 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: #55 / 64
- Number of attempts: 4
Neither Fizz nor Buzz - 253 entries
Not your regular increment macro! The gaps are tricky.
- Best score: 13
- Best player score: 20
- Position: #80 / 103
- Number of attempts: 3
Do you demand a shrubbery? - 1158 entries
Use :redir and crush the emacsgolfers.
- Best score: 15
- Best player score: 32
- Position: #292 / 300
- Number of attempts: 1
Don't know what this is - 2022 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: #379 / 585
- Number of attempts: 1
Where should I put the Newline? - 881 entries
Help me put the newline.
- Best score: 7
- Best player score: 8
- Position: #410 / 437
- Number of attempts: 2
A HAPPY NEW YEAR 2014 ! - 10663 entries
A HAPPY NEW YEAR 2014 !
- Best score: 11
- Best player score: 12
- Position: #2507 / 3683
- Number of attempts: 3
Counting in binary - 526 entries
"a" represents 0; "A" represents 1. Start from zero and count to 15.
- Best score: 16
- Best player score: 46
- Position: #94 / 117
- Number of attempts: 4
Letter case trickery - 1630 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: #446 / 518
- Number of attempts: 2
quotes inside quotes - 3159 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: #945 / 1078
- Number of attempts: 2
Sort the VimGolf challenges by popularity - 348 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: #96 / 107
- Number of attempts: 4
Words in parens - 12935 entries
We should all ace this, right?
- Best score: 13
- Best player score: 16
- Position: #2533 / 3963
- Number of attempts: 2
Pairs of numbers - 363 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: #49 / 136
- Number of attempts: 2
paste indent correction - JS - 112 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: #57 / 59
- Number of attempts: 3
Delete unwanted lines - 413 entries
Delete all lines which does not end in "o.."
- Best score: 9
- Best player score: 9
- Position: #194 / 229
- Number of attempts: 2
Word frequency alignment - 290 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 / 161
- Number of attempts: 5
Minimalist Limerick - 520 entries
Reproduce this lovely poem.
- Best score: 30
- Best player score: 39
- Position: #131 / 174
- Number of attempts: 4
Coordinates placeholder - 73 entries
Place coordinates instead of target search.
- Best score: 22
- Best player score: 28
- Position: #36 / 38
- Number of attempts: 1
fib.c cleanup - 68 entries
cleanup the file
- Best score: 15
- Best player score: 18
- Position: #53 / 55
- Number of attempts: 1
REDRUM - 166 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: #58 / 65
- Number of attempts: 2
Enumerate words - 254 entries
Enumerate the unique words in order.
- Best score: 23
- Best player score: 41
- Position: #86 / 91
- Number of attempts: 1
Circle in a square - 152 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: #33 / 54
- Number of attempts: 4
Block Fun 1 - 210 entries
Manipulate the columns to produce desired result.
- Best score: 14
- Best player score: 23
- Position: #49 / 75
- Number of attempts: 1
Groups magic - 158 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: #71 / 93
- Number of attempts: 1
Prefixes and suffixes - 635 entries
Generate all prefixes of "vimchallenge", then all suffixes.
- Best score: 17
- Best player score: 29
- Position: #147 / 201
- Number of attempts: 2
Sort by sum of numbers in a line(?) - 67 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: #36 / 39
- Number of attempts: 2
abcd > a b c d - 291 entries
transform the single spaces into 4 spaces repeat for each line
- Best score: 15
- Best player score: 15
- Position: #198 / 222
- Number of attempts: 1
Readable Rubyhash - 267 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: #66 / 95
- Number of attempts: 1
NATO phonetic alphabet - 529 entries
Transform the series of words into a list.
- Best score: 19
- Best player score: 37
- Position: #194 / 196
- Number of attempts: 4
SFD-ROC: The Quick Brown Fox - 193 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: #96 / 106
- Number of attempts: 3
The Quick Brown Fox Jumps Over The Lazy Vim - 420 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: #159 / 192
- Number of attempts: 1
The name of the game - 665 entries
End up with the name of the game.
- Best score: 11
- Best player score: 11
- Position: #276 / 360
- Number of attempts: 1
lamb had a little Mary - 609 entries
"Mary" and "lamb" are swapped. Unswap them. Fast as you can.
- Best score: 16
- Best player score: 42
- Position: #143 / 168
- Number of attempts: 1
SFD-ROC: vimvimvim - 1606 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: #417 / 446
- Number of attempts: 1
Stairs Indenting - 473 entries
Indent each line with <line number> whitespaces.
- Best score: 12
- Best player score: 20
- Position: #181 / 197
- Number of attempts: 1
Unwrap the text of an email message - 192 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: #54 / 75
- Number of attempts: 2
Array Transposition - 201 entries
Transpose four arrays into two.
- Best score: 27
- Best player score: 34
- Position: #30 / 56
- Number of attempts: 2
Saving the hashes(#) - 2063 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: #357 / 480
- Number of attempts: 3
SFD-ROC: ROT13 Phonics - 101 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: #67 / 73
- Number of attempts: 5
Let's play some Ivmgolf - 1118 entries
Oops, I spelled that wrong.
- Best score: 7
- Best player score: 10
- Position: #367 / 445
- Number of attempts: 2
Numbering a List - 1931 entries
Pretty simple, number the list.
- Best score: 13
- Best player score: 22
- Position: #451 / 652
- Number of attempts: 1
Shebangs for all - 1999 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: #507 / 516
- Number of attempts: 3
Dumb to smart - 99 entries
Turn dumb quote to smart vim's way.
- Best score: 28
- Best player score: 39
- Position: #46 / 56
- Number of attempts: 2
Change the content of a string - 1580 entries
This docstring is a complete lie. Fix it.
- Best score: 22
- Best player score: 31
- Position: #546 / 588
- Number of attempts: 1
Sort and add attributes - 1451 entries
Sort the states and add the attribute country to each record.
- Best score: 33
- Best player score: 41
- Position: #529 / 563
- Number of attempts: 5
Reconstruct the Sentence - 1507 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: #389 / 412
- Number of attempts: 5
Flodder-challenge - 1262 entries
Replace the text the most efficient and win!
- Best score: 27
- Best player score: 46
- Position: #285 / 335
- Number of attempts: 1
Simple text editing with Vim - 12811 entries
Make the pairs of lines match up by making each second line same as first
- Best score: 13
- Best player score: 24
- Position: #3112 / 3694
- Number of attempts: 2
Olivier Bégassat
Twitter2: