Played Challenges
Simple, Practical, and Common - 33616 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: 22
- Position: #979 / 7420
- Number of attempts: 4
Swap values - 4616 entries
Well, swap the values...
- Best score: 11
- Best player score: 18
- Position: #1139 / 1268
- Number of attempts: 1
prepend * to every non-blank line - 6308 entries
Prepend an asterisk to every non-blank line in the input file.
- Best score: 10
- Best player score: 15
- Position: #933 / 1537
- Number of attempts: 1
One number per line - 18727 entries
Just give me the numbers.
- Best score: 14
- Best player score: 22
- Position: #2650 / 3864
- Number of attempts: 3
Wget failed to download redirections - 202 entries
Output of a wget session, where 302 where not properly handled due to certificate problems, has been saved to a file. Keep the correct URLs to start again downloading.
- Best score: 15
- Best player score: 23
- Position: #52 / 65
- Number of attempts: 1
Prime Numbers - 374 entries
List the first 100 prime numbers.
- Best score: 34
- Best player score: 76
- Position: #70 / 105
- Number of attempts: 6
vim = 22 / 7 - 475 entries
pi square vim
- Best score: 20
- Best player score: 31
- Position: #90 / 135
- Number of attempts: 1
V to the i - 4802 entries
Input is 99 V's. Output is 100 i's.
- Best score: 7
- Best player score: 8
- Position: #1238 / 1893
- Number of attempts: 1
Split line with dots - 2144 entries
This line is too long, split it.
- Best score: 15
- Best player score: 20
- Position: #382 / 634
- Number of attempts: 1
Wrap the text of an email message to 79 characters - 766 entries
You're replying to an email with silly long lines. Clean them up.
- Best score: 5
- Best player score: 5
- Position: #227 / 410
- Number of attempts: 1
multiple cursor alternative - 1519 entries
from: https://www.reddit.com/r/vim/comments/6w5pfa/crosspost_from_remacs_how_would_you_do_this_in_vim/
- Best score: 19
- Best player score: 23
- Position: #245 / 380
- Number of attempts: 1
From argument to object - 1508 entries
This task typifies those programmers endure while coding. This C-family pseudocode needs a function argument to be repurposed as an object call. Simply search and replace? Repeat a pattern of edits?
- Best score: 17
- Best player score: 20
- Position: #317 / 458
- Number of attempts: 2
Every other line - 2910 entries
AaAaAaA
- Best score: 12
- Best player score: 17
- Position: #481 / 703
- Number of attempts: 1
Copy three lines - 2872 entries
If the site is up (by some miracle), make the text under every header identical.
- Best score: 13
- Best player score: 18
- Position: #318 / 640
- 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: 16
- Position: #535 / 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: 27
- Position: #69 / 72
- Number of attempts: 1
Search and Replace 0 - 4989 entries
Replace every instance of 'aaa' with 'xaaax'.
- Best score: 12
- Best player score: 13
- Position: #860 / 1624
- Number of attempts: 2
That hyphen - 2595 entries
"vim vi improved"
- Best score: 9
- Best player score: 12
- Position: #470 / 701
- Number of attempts: 2
comment and uncomment code inline - 1122 entries
It's very useful to be able to comment out a block of code in a quick edit. And likewise to uncomment the code. This operation often involves multi-line stanzas and even large blocks. With just line-wise navigation and insert mode this would cost you about 4 keystrokes per line. Master this hole of VimGolf and you'll quickly drop your key count in day to day Vim as well.
- Best score: 9
- Best player score: 17
- Position: #295 / 322
- 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: #2462 / 4197
- Number of attempts: 2
Extract HTML option values from tag values - 110 entries
Generate HTML option values from the text in the option tag. If the text contains multiple words, replace the spaces with an underscore and convert all capital letters to small letters.
- Best score: 34
- Best player score: 37
- Position: #22 / 44
- Number of attempts: 4
Make HTML List - 1050 entries
Turn the comma separated list into an unordered html list.
- Best score: 33
- Best player score: 49
- Position: #189 / 273
- Number of attempts: 2
Interweave two blocks of text - 659 entries
Suppose you've got data on a list of things from multiple sources. They're all in separate chunks, so how might you create a tabular output?
- Best score: 15
- Best player score: 26
- Position: #202 / 214
- Number of attempts: 1
Un"finnish"ed Work - 116 entries
Replace å by a, ä by a and ö by o.
- Best score: 14
- Best player score: 18
- Position: #53 / 60
- Number of attempts: 1
Todo list specification - 399 entries
The every item on the todo list must be done today. Modify the list to reflect that.
- Best score: 37
- Best player score: 40
- Position: #157 / 179
- Number of attempts: 1
Text to HTML Table - 180 entries
Turn the plain text table to an HTML table.
- Best score: 52
- Best player score: 61
- Position: #39 / 53
- Number of attempts: 6
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: 43
- Position: #182 / 380
- Number of attempts: 1
For all cases. - 161 entries
In this case... change it! :) Watch the line.
- Best score: 8
- Best player score: 15
- Position: #100 / 106
- Number of attempts: 1
Stairstep digits - 394 entries
Remove the evens. Double the odds.
- Best score: 9
- Best player score: 24
- Position: #143 / 145
- Number of attempts: 2
Format java properties - 88 entries
Format java properties to a different format. The value which is the string following the first '=' cannot & should not change. All periods in the key get replaced with an underscore "_" and get a prefix of "b_".
- Best score: 27
- Best player score: 41
- Position: #33 / 35
- Number of attempts: 2
Flatten repo - 29 entries
For each git repository (<project> tag) translate name attribute to flatten directory structure. Add path attribute if missing (because checkout hierarchy must be kept). #xml
- Best score: 43
- Best player score: 55
- Position: #7 / 11
- Number of attempts: 7
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: #20 / 39
- Number of attempts: 3
Missing Library and a Typo - 887 entries
I forgot to add a c library, please add it for me. Also I'm bad at typing so fix my typo too.
- Best score: 14
- Best player score: 16
- Position: #43 / 213
- Number of attempts: 5
Basic renumbering - 5648 entries
Renumbering Basic.
- Best score: 11
- Best player score: 27
- Position: #1187 / 1264
- Number of attempts: 1
Simple addition - 326 entries
The right side of the equation is already there. We just need the left one now.
- Best score: 12
- Best player score: 12
- Position: #23 / 122
- Number of attempts: 6
Hidden Message - 93 entries
Find the hidden message and replace all other characters with spaces.
- Best score: 33
- Best player score: 46
- Position: #24 / 30
- Number of attempts: 4
Interactive git rebase changing commands - 172 entries
How to change the action of some commits in git rebase dialog.
- Best score: 14
- Best player score: 21
- Position: #75 / 79
- Number of attempts: 1
create arrows in a list - 117 entries
Add arrow at same distance
- Best score: 10
- Best player score: 10
- Position: #41 / 73
- Number of attempts: 2
Adam's challenge - 984 entries
Change both normal to bold and 4 by 2. Adam Wathan challenge this on twitter . He did it in 11 keystrokes on Sublime.
- Best score: 18
- Best player score: 27
- Position: #248 / 270
- Number of attempts: 1
Create Leading Zeros - 241 entries
Create leading zeros only for id columns. Please use generic approach!
- Best score: 23
- Best player score: 29
- Position: #47 / 82
- Number of attempts: 1
Create a table - 332 entries
Convert the given input into a formatted table
- Best score: 16
- Best player score: 19
- Position: #73 / 105
- Number of attempts: 4
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: 16
- Position: #197 / 291
- Number of attempts: 3
Nesting SASS - 266 entries
Move a block inside another block and indent it
- Best score: 9
- Best player score: 17
- Position: #77 / 96
- Number of attempts: 1
JS notation to Immutable.js notation - 186 entries
Now Immutable.js made its way into many frontends. This challenge consists of a typical refactoring that many of us are facing now.
- Best score: 34
- Best player score: 39
- Position: #36 / 63
- Number of attempts: 3
FoodCritic023: Prefer conditional attributes - 181 entries
FoodCritic (www.foodcritic.io) is a lint tool for your Chef (learn.chef.io) cookbooks. FC023 indicates that you should prefer Chef guards over Ruby conditions. This challenge expects you to be able to fix this issue in a sample cookbook, given the FoodCritic output: ================================================================ FC023: Prefer conditional attributes: cookbooks/foo/recipes/default.rb:25 ================================================================ See http://www.foodcritic.io/#FC023 for more details about the changes being made.
- Best score: 25
- Best player score: 37
- Position: #48 / 53
- Number of attempts: 3
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: 14
- Position: #164 / 174
- Number of attempts: 1
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: 17
- Position: #139 / 140
- Number of attempts: 1
replace 2nd column blanks with values in same column if blank - 242 entries
Where ,SOMELOGB and ,SOMELOGC replaces each /r carriage return if 2nd column is blank. The replace only happens if 2nd column is blank though and should replace up to the non blank row.
- Best score: 15
- Best player score: 26
- Position: #82 / 83
- 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: 22
- Position: #103 / 122
- Number of attempts: 2
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: 21
- Position: #72 / 82
- Number of attempts: 1
Fun With The Diagonal - 107 entries
change the lowercase characters on the main diagonal to uppercase
- Best score: 11
- Best player score: 11
- Position: #49 / 81
- Number of attempts: 1
Vice versa - 7907 entries
Little role switching.
- Best score: 12
- Best player score: 22
- Position: #1927 / 2128
- Number of attempts: 3
Double and switch - 43 entries
Aaaanother case switcher
- Best score: 18
- Best player score: 36
- Position: #18 / 19
- Number of attempts: 3
Pretty multi-line bash - 235 entries
Bash line continuations are much prettier when they're column aligned.
- Best score: 15
- Best player score: 22
- Position: #49 / 77
- Number of attempts: 1
7th Birthday - 202 entries
We have a bunch of numbers written from 0 to 9 in the order present in the text input file. The task is to create 7 by replacing the numbers with dashes.
- Best score: 19
- Best player score: 33
- Position: #74 / 75
- Number of attempts: 1
Free hyphen! - 169 entries
Just like "Inner hyphens", but I'm giving you a free hyphen to play with. Will your solution be any different?
- Best score: 9
- Best player score: 11
- Position: #76 / 89
- Number of attempts: 2
C Reformatting - 690 entries
You may use Visual mode... or not. #uppercase
- Best score: 30
- Best player score: 46
- Position: #77 / 163
- Number of attempts: 2
Paragraph sort - 450 entries
My large herbivorous mammals, Vim commands, and POSIX utilities need to be sorted separately.
- Best score: 14
- Best player score: 19
- Position: #104 / 125
- Number of attempts: 1
Vim's not included features - 240 entries
Filter not included (-) features in a hypothetical installation of vim.
- Best score: 23
- Best player score: 154
- Position: #65 / 65
- Number of attempts: 1
Sorting a glossary - 131 entries
Sort a glossary. Glossary head contains a header phrase ending with ':' and glossary body has multi line text indented with a tab.
- Best score: 6
- Best player score: 6
- Position: #55 / 81
- Number of attempts: 1
Sort files from hosts - 188 entries
Resume files by host. I hope you enjoy with this challenge
- Best score: 15
- Best player score: 21
- Position: #74 / 76
- Number of attempts: 1
Order and join - 983 entries
There's something special about the input order.
- Best score: 10
- Best player score: 17
- Position: #230 / 259
- Number of attempts: 1
Paragraph breaks - 522 entries
Swap the blank lines and the aaa lines.
- Best score: 10
- Best player score: 19
- Position: #164 / 167
- Number of attempts: 2
Array of characters - 175 entries
We all copy paste things off the internet, but the syntax doesn't look right. Fix it as fast as possible.
- Best score: 33
- Best player score: 48
- Position: #38 / 47
- Number of attempts: 2
comments galore - 1045 entries
Basic comment reformatting
- Best score: 10
- Best player score: 12
- Position: #382 / 424
- Number of attempts: 1
Mirrored text - 177 entries
backward and forward, and long enough to be challenging
- Best score: 14
- Best player score: 17
- Position: #60 / 71
- Number of attempts: 4
lipsum lines - 278 entries
Convert a quoted block of text into strings in a list.
- Best score: 28
- Best player score: 39
- Position: #87 / 95
- Number of attempts: 1
Inner hyphens - 136 entries
Yet another hyphen challenge. Adding 5 hyphens to a file shouldn't be too hard.
- Best score: 11
- Best player score: 12
- Position: #66 / 82
- Number of attempts: 2
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: 34
- Position: #115 / 118
- Number of attempts: 1
Replace and keep the case - 437 entries
Replace all instance of plugin and Plugin to device and Device.
- Best score: 26
- Best player score: 31
- Position: #89 / 118
- Number of attempts: 1
Change attribute to getter - 140 entries
Wrap attributes with a getter method.
- Best score: 24
- Best player score: 24
- Position: #21 / 59
- Number of attempts: 2
Scrambled numbers - 807 entries
Four is NOT 1. One is 1.
- Best score: 18
- Best player score: 27
- Position: #134 / 184
- Number of attempts: 3
Alsa configuration - 513 entries
I'm tweaking my ~/.asoundrc file!
- Best score: 22
- Best player score: 34
- Position: #103 / 128
- Number of attempts: 2
Align commas - 1095 entries
There are 15,000 aligning challenges on vimgolf.com, and they're all exactly the same. I hope this one is a little different.
- Best score: 11
- Best player score: 29
- Position: #239 / 246
- Number of attempts: 1
A grid of punctuation - 137 entries
Create a checkerboard of = and - in an 80×24 grid!
- Best score: 16
- Best player score: 17
- Position: #41 / 61
- Number of attempts: 1
Hello ${world} - 324 entries
Migrate a JavaScript String from concatenation to ES6 interpolation.
- Best score: 24
- Best player score: 26
- Position: #50 / 96
- Number of attempts: 3
Generate a list of numbers - 295 entries
Please generate list of numbers from 1 to 20.
- Best score: 14
- Best player score: 20
- Position: #136 / 140
- Number of attempts: 1
ASCII Art - 87 entries
how good are you with simple regex?
- Best score: 10
- Best player score: 18
- Position: #53 / 54
- Number of attempts: 1
Add Go XML to structure tags - 170 entries
The Go programming language can directly map XML to structure fields. Add the correct XML tag after each field.
- Best score: 23
- Best player score: 28
- Position: #33 / 69
- Number of attempts: 2
Restore order to the alphabet - 201 entries
The numbers are OK. The letters are wonky.
- Best score: 12
- Best player score: 27
- Position: #65 / 72
- Number of attempts: 1
Array transposition - 2417 entries
Transpose two arrays into one.
- Best score: 16
- Best player score: 29
- Position: #351 / 448
- Number of attempts: 3
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: 20
- Position: #44 / 62
- Number of attempts: 3
Mirror Symmetry - 822 entries
Add backslashes.
- Best score: 7
- Best player score: 15
- Position: #261 / 269
- Number of attempts: 1
Swap assigned value - 647 entries
Simple problem but looking for interesting solutions.
- Best score: 10
- Best player score: 10
- Position: #85 / 254
- Number of attempts: 3
From A to B - 591 entries
Mirror and change this text block
- Best score: 16
- Best player score: 38
- Position: #154 / 159
- Number of attempts: 1
Change your calendar - 392 entries
Happy New Year!
- Best score: 18
- Best player score: 38
- Position: #67 / 87
- Number of attempts: 1
Collect List - 4298 entries
Convert to comma separated list.
- Best score: 12
- Best player score: 17
- Position: #967 / 1190
- Number of attempts: 1
VimGolfNight - 560 entries
Based on "The name of the game".
- Best score: 12
- Best player score: 12
- Position: #251 / 347
- Number of attempts: 2
camel riding - 793 entries
add a prefix on some camelCase variables
- Best score: 15
- Best player score: 18
- Position: #237 / 281
- Number of attempts: 1
swap or reverse - 126 entries
Try to swap or reverse the line as needed.
- Best score: 16
- Best player score: 20
- Position: #65 / 69
- Number of attempts: 1
readability - 327 entries
Make the code readable by adding some spaces
- Best score: 18
- Best player score: 19
- Position: #128 / 152
- Number of attempts: 2
Interleave lines - 185 entries
This is some kind of « paste -d'\n' c b a ». There are many ways to achieve this.. just find the shortest!
- Best score: 17
- Best player score: 36
- Position: #49 / 60
- Number of attempts: 2
Logging with key - 328 entries
Sometimes it is better to log with meaningful key
- Best score: 21
- Best player score: 29
- Position: #52 / 88
- Number of attempts: 3
Space out the alphabet - 1657 entries
Put 3 spaces between adjacent letters.
- Best score: 15
- Best player score: 17
- Position: #195 / 444
- Number of attempts: 4
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: 19
- Position: #44 / 67
- Number of attempts: 4
Fix the XML - 1039 entries
The challenge consists in having a valid xml from an incomplete source.
- Best score: 18
- Best player score: 28
- Position: #227 / 290
- 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: 21
- Position: #74 / 114
- Number of attempts: 2
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: 16
- Position: #68 / 96
- Number of attempts: 3
ASCII box - 347 entries
Don't forget to fix typos!
- Best score: 23
- Best player score: 26
- Position: #62 / 107
- Number of attempts: 4
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: 10
- Position: #213 / 239
- Number of attempts: 1
Winning streak - 135 entries
Make the number on each line equal the consecutive L's or W's.
- Best score: 21
- Best player score: 42
- Position: #51 / 51
- Number of attempts: 1
Sorting database text output - 223 entries
Sometimes it is nice to be able to quickly take column-formatted text output from the SQL command line and turn it into a list of useful data. In this case we want a unique, sorted list of the values from the second column combined into one comma-separated list. What is the fewest strokes you can do this in?
- Best score: 24
- Best player score: 27
- Position: #69 / 83
- Number of attempts: 4
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: 40
- Position: #46 / 54
- Number of attempts: 1
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: 17
- Position: #204 / 247
- Number of attempts: 1
increment by column in XML - 152 entries
modify an arbitrary "column" in an xml table by incrementing a an arbitrary placeholder string
- Best score: 19
- Best player score: 31
- Position: #50 / 55
- Number of attempts: 1
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: 19
- Position: #51 / 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: 15
- Position: #198 / 206
- Number of attempts: 1
I forgot quotes - 15983 entries
Oops.
- Best score: 10
- Best player score: 14
- Position: #1701 / 4180
- Number of attempts: 3
Shift down - 209 entries
Number words are back.
- Best score: 19
- Best player score: 30
- Position: #57 / 69
- Number of attempts: 1
learn vim in short time - 240 entries
so happy to learn vim.because vim is awesome
- Best score: 8
- Best player score: 10
- Position: #158 / 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: #71 / 110
- Number of attempts: 1
Subtraction - 180 entries
Solve the equations.
- Best score: 18
- Best player score: 37
- Position: #58 / 62
- Number of attempts: 1
-a-b-c- - 3213 entries
Put hyphens everywhere.
- Best score: 13
- Best player score: 15
- Position: #663 / 1137
- Number of attempts: 2
Count both ways - 1022 entries
Right AND down.
- Best score: 13
- Best player score: 20
- Position: #340 / 354
- Number of attempts: 1
Suffix sort - 270 entries
Sort from the end of the line, as if the letters in each line were reversed.
- Best score: 19
- Best player score: 73
- Position: #67 / 67
- Number of attempts: 1
NBCU Weekly Challenge - Test - 253 entries
Just testing.
- Best score: 18
- Best player score: 19
- Position: #75 / 116
- Number of attempts: 1
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: #102 / 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: 17
- Position: #136 / 158
- Number of attempts: 1
120 Degrees - 493 entries
Rotate that triangle.
- Best score: 14
- Best player score: 22
- Position: #97 / 145
- Number of attempts: 1
Gray area - 747 entries
It's a golf metaphor or something.
- Best score: 11
- Best player score: 17
- Position: #261 / 271
- Number of attempts: 2
NBCU Weekly Challenge - #0 - 139 entries
One of our favorites lines here at NBCU! p.s. The first version of #0 was deleted due to me copy/pasting a HTML entity. Congrats to the one who figured that out, you are a true ninja warrior!
- Best score: 30
- Best player score: 54
- Position: #57 / 58
- 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: 41
- Position: #54 / 64
- Number of attempts: 2
Neither Fizz nor Buzz - 253 entries
Not your regular increment macro! The gaps are tricky.
- Best score: 13
- Best player score: 31
- Position: #96 / 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: #281 / 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: 16
- Position: #521 / 585
- Number of attempts: 1
Two become one - 713 entries
We have two c arrays and want to make one two dimensional out of it. Can we do that?
- Best score: 25
- Best player score: 40
- Position: #184 / 208
- Number of attempts: 1
Where should I put the Newline? - 881 entries
Help me put the newline.
- Best score: 7
- Best player score: 15
- Position: #436 / 437
- Number of attempts: 1
Vim tetris - 353 entries
Vim can play tetris too!
- Best score: 21
- Best player score: 28
- Position: #71 / 102
- Number of attempts: 5
Mess in revision history - 1184 entries
Help Joe clean up what Steve has cobbled.
- Best score: 17
- Best player score: 41
- Position: #232 / 250
- Number of attempts: 2
Shuffle puzzle - 346 entries
Sort the lines in each indent group, and sort the groups. That's the pattern. Or just move lines around manually to get a better score.
- Best score: 13
- Best player score: 18
- Position: #94 / 104
- Number of attempts: 1
Going underground.... - 356 entries
Simple reformatting: in this case changing from the format London underground supplies its customers with, to the format that Google Calendar likes...
- Best score: 22
- Best player score: 34
- Position: #103 / 128
- Number of attempts: 1
Split the words - 368 entries
Add the spaces manually if you must, but if you use Vim's spell checking feature wisely, I think you'll save a LARGE number of strokes.
- Best score: 18
- Best player score: 73
- Position: #110 / 111
- Number of attempts: 1
A HAPPY NEW YEAR 2014 ! - 10663 entries
A HAPPY NEW YEAR 2014 !
- Best score: 11
- Best player score: 12
- Position: #2206 / 3683
- Number of attempts: 3
attr_aligner - 3520 entries
Two attr keywords. Two separate indentations. Align the colons.
- Best score: 19
- Best player score: 58
- Position: #689 / 702
- Number of attempts: 1
Counting in binary - 526 entries
"a" represents 0; "A" represents 1. Start from zero and count to 15.
- Best score: 16
- Best player score: 48
- Position: #101 / 117
- Number of attempts: 3
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: 16
- Position: #464 / 518
- Number of attempts: 1
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: #902 / 1078
- Number of attempts: 1
Top X - 212 entries
The End File is the Top 10 Vimgolf Leaderboard at June 29, 2013. This is a second version, with a great contribution of @udioica. X is ten in Roman,a numeric system in ancient Rome
- Best score: 18
- Best player score: 35
- Position: #66 / 71
- Number of attempts: 1
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: 42
- Position: #103 / 107
- Number of attempts: 1
Number an outline - 280 entries
The indent and words are right, but the numbers are all wrong.
- Best score: 25
- Best player score: 61
- Position: #52 / 78
- Number of attempts: 1
Words in parens - 12935 entries
We should all ace this, right?
- Best score: 13
- Best player score: 15
- Position: #1597 / 3963
- Number of attempts: 7
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: 43
- Position: #100 / 136
- Number of attempts: 4
Hole-in-one - 1018 entries
Lets take this golf thing literally.. Drive off the tee into the hole, and of course you don't strike the ball completely clean.
- Best score: 15
- Best player score: 27
- Position: #294 / 304
- Number of attempts: 1
Delete unwanted lines - 411 entries
Delete all lines which does not end in "o.."
- Best score: 9
- Best player score: 9
- Position: #163 / 229
- Number of attempts: 1
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: #98 / 161
- Number of attempts: 1
Minimalist Limerick - 520 entries
Reproduce this lovely poem.
- Best score: 30
- Best player score: 36
- Position: #98 / 174
- Number of attempts: 2
Enumerate words - 254 entries
Enumerate the unique words in order.
- Best score: 23
- Best player score: 42
- Position: #88 / 91
- Number of attempts: 1
Prefixes and suffixes - 635 entries
Generate all prefixes of "vimchallenge", then all suffixes.
- Best score: 17
- Best player score: 26
- Position: #95 / 201
- 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: #164 / 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: 39
- Position: #88 / 95
- Number of attempts: 1
NATO phonetic alphabet - 529 entries
Transform the series of words into a list.
- Best score: 19
- Best player score: 21
- Position: #101 / 196
- Number of attempts: 2
A simple change - 461 entries
Just change the numbers in the most efficient way ...
- Best score: 12
- Best player score: 16
- Position: #163 / 191
- 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: #149 / 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: #225 / 360
- Number of attempts: 2
lamb had a little Mary - 609 entries
"Mary" and "lamb" are swapped. Unswap them. Fast as you can.
- Best score: 16
- Best player score: 34
- Position: #81 / 168
- Number of attempts: 2
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: 16
- Position: #431 / 446
- Number of attempts: 1
Stairs Indenting - 473 entries
Indent each line with <line number> whitespaces.
- Best score: 12
- Best player score: 14
- Position: #127 / 197
- Number of attempts: 1
Python to Ruby - 204 entries
Convert this Python code to Ruby. NOTE: This program likely won't run.
- Best score: 24
- Best player score: 50
- Position: #55 / 61
- Number of attempts: 1
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: 30
- Position: #394 / 480
- Number of attempts: 2
Let's play some Ivmgolf - 1118 entries
Oops, I spelled that wrong.
- Best score: 7
- Best player score: 10
- Position: #363 / 445
- Number of attempts: 1
you're stuck on jQuery < 1.7 - 362 entries
replace calls to jQuery 1.7+'s `on` with calls to pre 1.7 `bind`
- Best score: 25
- Best player score: 30
- Position: #64 / 113
- Number of attempts: 3
Vertical Limit - 2538 entries
transform a succession of one word lines to a an array of strings
- Best score: 21
- Best player score: 28
- Position: #599 / 754
- Number of attempts: 1
Exchanging Quotes - 858 entries
Sometimes you need to exchange a choice of quotes in some code.
- Best score: 30
- Best player score: 46
- Position: #213 / 230
- Number of attempts: 1
replacing each line of a block selection - 2999 entries
replace each line's ../assets/js with /javascripts
- Best score: 18
- Best player score: 36
- Position: #742 / 777
- Number of attempts: 1
Switch function arguments - 2139 entries
How to switch two arguments of a function.
- Best score: 11
- Best player score: 19
- Position: #639 / 663
- Number of attempts: 1
Append semicolon after expressions - 1056 entries
Some lines need the semicolon, some don't.
- Best score: 11
- Best player score: 14
- Position: #381 / 419
- Number of attempts: 1
Reverse and double space - 500 entries
Reverse the order of the given lines and double space everything
- Best score: 14
- Best player score: 37
- Position: #196 / 199
- Number of attempts: 1
Remove noise from HTTP log - 717 entries
This piece of log (from the year 2000) contains some irrelevant data. We only want to see the HTTP method and resource.
- Best score: 15
- Best player score: 16
- Position: #191 / 273
- Number of attempts: 1
Remove semicolons after expressions - 654 entries
A follow-up for http://vimgolf.com/challenges/4fc9d767d3a0d4000100000e.
- Best score: 6
- Best player score: 12
- Position: #259 / 263
- Number of attempts: 1
switch variable - 5071 entries
how fast can you switch two variable ?
- Best score: 11
- Best player score: 15
- Position: #1519 / 1748
- Number of attempts: 1
The meaning - 575 entries
Numbers are fun!
- Best score: 5
- Best player score: 5
- Position: #266 / 363
- Number of attempts: 1
Ugly spreadsheet copy/paste to CSV - 1009 entries
convert an ugly spreadsheet copy/paste into a CSV format.
- Best score: 19
- Best player score: 36
- Position: #117 / 193
- Number of attempts: 3
Replacing some words - 428 entries
How fast could it be?
- Best score: 17
- Best player score: 24
- Position: #90 / 151
- Number of attempts: 1
Make it more readable - 2005 entries
Insert blank lines to make it more organized and readable
- Best score: 13
- Best player score: 20
- Position: #597 / 650
- Number of attempts: 1
Line Zipper - 473 entries
Zip/pair related lines.
- Best score: 12
- Best player score: 16
- Position: #192 / 215
- Number of attempts: 1
remove dupes from array - 1358 entries
given a random string that contains a ruby-esque array, make sure that there are no duplicate elements
- Best score: 17
- Best player score: 42
- Position: #321 / 336
- Number of attempts: 1
Alphabetize the directory - 298 entries
Put the contacts and their information in alphabetical order.
- Best score: 30
- Best player score: 64
- Position: #97 / 101
- Number of attempts: 2
PHP Array Syntax -> MailChimp Merge Syntax - 545 entries
I recently needed to send an e-mail to our marketing department listing allowed merge tags for our MailChimp campaigns. The allowed merge tags were determined from a PHP array in one of our PHP classes. I transformed the PHP class to MailChimp's syntax and sent the e-mail. It was, however, a long, laborious process. I'm still fairly new to Vim and would love to see how an expert Vim user would tackle one of my own, real-world problems. Thanks and have fun!
- Best score: 23
- Best player score: 30
- Position: #73 / 150
- Number of attempts: 1
Case preserving word replacement - 454 entries
Half way through my project, my people turned into dogs. Now I have to change everything in my source.
- Best score: 19
- Best player score: 19
- Position: #56 / 180
- Number of attempts: 2
Sort entries based on date - 392 entries
Sort some entries in a Ledger-file based on date.
- Best score: 11
- Best player score: 33
- Position: #113 / 117
- Number of attempts: 2
imports alignment (python) - 700 entries
Align as one import per line.
- Best score: 17
- Best player score: 26
- Position: #132 / 198
- Number of attempts: 1
Rotating Philosophers Problem - 410 entries
Can you help the philosophers find a good place to sit before they get five forks and spaghetti?
- Best score: 29
- Best player score: 30
- Position: #78 / 166
- Number of attempts: 1
HTML to Haml - 878 entries
Help convert this HTML page to Haml.
- Best score: 23
- Best player score: 37
- Position: #95 / 204
- Number of attempts: 1
expand a list comprehension (python) - 333 entries
Please show your way to convert a list comprehension in python to an ordinary for-loop expression!
- Best score: 42
- Best player score: 63
- Position: #87 / 109
- Number of attempts: 1
Reformat long lines - 358 entries
Rearrange this ruby method call to put each parameter on its own line. Could become a useful macro.
- Best score: 15
- Best player score: 25
- Position: #131 / 134
- Number of attempts: 3
Generate English Alphabets - 487 entries
Start with a, get up to z.
- Best score: 19
- Best player score: 24
- Position: #66 / 206
- Number of attempts: 1
Insert a Markdown link - 439 entries
Put a link in a markdown document, using the after-the-paragraph format.
- Best score: 22
- Best player score: 27
- Position: #108 / 147
- Number of attempts: 1
Numbering a List - 1931 entries
Pretty simple, number the list.
- Best score: 13
- Best player score: 24
- Position: #480 / 652
- Number of attempts: 1
The holy-grail may help - 366 entries
Can you find it in less than 20 strokes, Arthur?
- Best score: 16
- Best player score: 25
- Position: #202 / 209
- Number of attempts: 1
Ruby 1.9 hashes - 1244 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: 12
- Best player score: 18
- Position: #351 / 406
- Number of attempts: 1
Assignment Alignment - 883 entries
line up the operators. Use spaces, not tabs.
- Best score: 18
- Best player score: 18
- Position: #44 / 220
- Number of attempts: 4
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: 20
- Position: #421 / 516
- Number of attempts: 1
Table Reshuffle - 429 entries
Fix the column order in this table... also append the new 'username' column.
- Best score: 22
- Best player score: 34
- Position: #86 / 139
- Number of attempts: 1
Reverse and count - 473 entries
Someone typed things upside down and now a Vim ninja needs to reverse the lines and count how many there are.
- Best score: 18
- Best player score: 21
- Position: #22 / 176
- Number of attempts: 1
Ruby 1.9 compat - 629 entries
Remember when Ruby supported `when <expr> :`? Well, it doesn't in 1.9, so let's make sure we use `then`, without ruining our lovely new hash syntax!
- Best score: 14
- Best player score: 18
- Position: #175 / 234
- Number of attempts: 1
Reverse Simple Deletion - 847 entries
You did the simple deletion, now reverse it.
- Best score: 11
- Best player score: 12
- Position: #328 / 458
- Number of attempts: 2
Increment, increment, increment.... - 688 entries
Vim likes macros
- Best score: 10
- Best player score: 12
- Position: #340 / 408
- Number of attempts: 2
Sorting paragraphs - 534 entries
Order the paragraphs correctly, per prefixed index
- Best score: 18
- Best player score: 43
- Position: #133 / 163
- Number of attempts: 2
Indentation - 542 entries
Indent each line according to the right number of spaces it needs.
- Best score: 20
- Best player score: 47
- Position: #162 / 178
- Number of attempts: 2
Hatsuyume - 532 entries
http://en.wikipedia.org/wiki/Hatsuyume
- Best score: 15
- Best player score: 22
- Position: #47 / 186
- Number of attempts: 1
The Cake is a Lie - 1346 entries
Correct the capitalization of each word
- Best score: 9
- Best player score: 11
- Position: #453 / 527
- Number of attempts: 1
Fix the Haiku - 308 entries
Change this slightly scrambled haiku to its unscrambled form and fix the capitalisation and punctuation along the way.
- Best score: 28
- Best player score: 52
- Position: #102 / 113
- Number of attempts: 1
Context insensitive completion 0 - 577 entries
Buried in the lines you're not supposed to add is the line "Add this line!" Add that line to the top of the file.
- Best score: 6
- Best player score: 7
- Position: #99 / 246
- Number of attempts: 1
Compile C - 430 entries
You might have to get clever to do this one.
- Best score: 19
- Best player score: 22
- Position: #96 / 141
- Number of attempts: 4
Context Insensitive completion 1 - 498 entries
Finish writing this simple Python HTTP server.
- Best score: 18
- Best player score: 18
- Position: #130 / 245
- Number of attempts: 1
Make Fancy Header - 1052 entries
Make the header text stand out with surrounding asterisks
- Best score: 15
- Best player score: 17
- Position: #198 / 344
- Number of attempts: 2
Reformat some Python - 609 entries
Fix some very bizarrely laid-out code.
- Best score: 34
- Best player score: 47
- Position: #164 / 236
- Number of attempts: 5
Reformat a C golf submission - 604 entries
Take this C golf submission (for the "tiny but standards-compliant Hello World program" category, naturally), and turn it into formatted C code.
- Best score: 22
- Best player score: 30
- Position: #95 / 208
- Number of attempts: 2
Reverse characters in a line - 771 entries
You have everything you need, just not in the right order. Mastermind would give you 26 white pegs.
- Best score: 12
- Best player score: 22
- Position: #221 / 265
- Number of attempts: 1
Reformat most common surnames - 717 entries
Reformat copy-pasted table into a list of the most common surnames
- Best score: 23
- Best player score: 28
- Position: #101 / 210
- Number of attempts: 1
Remember FizzBuzz? - 725 entries
Output FizzBuzz to 100. Start with nothing.
- Best score: 39
- Best player score: 78
- Position: #155 / 190
- Number of attempts: 1
Get rid of html tags - 398 entries
Want to read more about Vim's background? Then get rid of those html tags...
- Best score: 12
- Best player score: 17
- Position: #116 / 230
- 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: 27
- Position: #483 / 588
- Number of attempts: 1
Deleting folded text - 360 entries
The text below contains three folds. Delete them (and the text inside them). For example: 123 456 /*{{{*/ 789 /*}}}*/ 012 Should become: 123 012 Also, add `aoeuaoeu` to make sure small solutions don't get flagged as cheating.
- Best score: 17
- Best player score: 27
- Position: #105 / 117
- 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: 35
- Position: #409 / 563
- Number of attempts: 2
Add fold markers to a .c file - 625 entries
Fold markers can make it easier to navigate source code. Add them to this .c file.
- Best score: 30
- Best player score: 47
- Position: #158 / 183
- Number of attempts: 1
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: 26
- Position: #361 / 412
- Number of attempts: 3
Braces or Brackets? - 1015 entries
Someone forgot whether to use braces or brackets and you have to clean up their code!
- Best score: 34
- Best player score: 40
- Position: #96 / 315
- Number of attempts: 1
Whitespace, empty lines and tabs - 3665 entries
Convert tabs to spaces, strip empty lines and trailing whitespace.
- Best score: 16
- Best player score: 29
- Position: #512 / 787
- Number of attempts: 1
Flodder-challenge - 1262 entries
Replace the text the most efficient and win!
- Best score: 27
- Best player score: 39
- Position: #237 / 335
- Number of attempts: 2
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: 17
- Position: #2493 / 3694
- Number of attempts: 1
Reformat/Refactor a Golfer Class - 6982 entries
A simple case of removing unneeded code and fixing broken indentation.
- Best score: 28
- Best player score: 46
- Position: #1212 / 1706
- Number of attempts: 1