Played Challenges
Poorly indented Python comments - 1315 entries
Fix the alignment of some Python comments as quickly as possible.
- Best score: 15
- Best player score: 25
- Position: #92 / 221
- Number of attempts: 3
Many duplicates - 1445 entries
Quick and easy
- Best score: 7
- Best player score: 8
- Position: #58 / 468
- Number of attempts: 2
delete swap - 1776 entries
delete all swap
- Best score: 5
- Best player score: 5
- Position: #11 / 550
- Number of attempts: 2
Generate a very basic Python constructor (fixed) - 1253 entries
Original by @BiddulphCaleb (http://www.vimgolf.com/challenges/6019f1c4642668000cee11e8) - had some extra spaces in output file.
- Best score: 29
- Best player score: 37
- Position: #87 / 271
- Number of attempts: 1
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: #255 / 556
- Number of attempts: 1
hello-world-vimgolf - 2499 entries
Simple number generation
- Best score: 10
- Best player score: 10
- Position: #3 / 708
- Number of attempts: 4
Learn to ask for :help - 587 entries
Learn to use the help to reduce your strokes...
- Best score: 19
- Best player score: 26
- Position: #53 / 130
- Number of attempts: 1
Migrated to Postgres! - 323 entries
Celebration completion of this project. https://github.com/igrigorik/vimgolf/pull/322
- Best score: 26
- Best player score: 29
- Position: #38 / 126
- Number of attempts: 1
simple replacements - 1753 entries
The goal is to see the replacement commands in action.
- Best score: 19
- Best player score: 21
- Position: #142 / 380
- Number of attempts: 2
Python dataclasses - 1127 entries
Simple challenge to extract fields from a Python class
- Best score: 19
- Best player score: 19
- Position: #13 / 283
- Number of attempts: 4
Modernise code - 1396 entries
Modernise and clean up some C++ code.
- Best score: 34
- Best player score: 37
- Position: #108 / 322
- Number of attempts: 2
swap number pairs - 2090 entries
Swap the numbers in a bunch of 2-element arrays.
- Best score: 16
- Best player score: 16
- Position: #11 / 379
- Number of attempts: 8
Mr. Hacker - 89 entries
Elvin is hacker. He has piece of users database from some social net site. Recently he installed Vim, and he wants to convert CSV DB to specific format `key=value' where `key' is login and `value' is password, but password in DB is encrypted in ROT13. Help him.
- Best score: 19
- Best player score: 19
- Position: #8 / 35
- Number of attempts: 2
Python: Def to Lambda - 455 entries
LAMBDA!!!
- Best score: 19
- Best player score: 19
- Position: #5 / 156
- Number of attempts: 2
Turn the x - 328 entries
Turn the x to a +
- Best score: 19
- Best player score: 20
- Position: #24 / 82
- Number of attempts: 3
Format the CSS - 157 entries
You just copied some CSS color names from the web and need to add them to your python module. Create the COLORS variable and assign a dict() with the names as keys and hex-colors as values. BEWARE OF THE TABS!!
- Best score: 41
- Best player score: 46
- Position: #28 / 48
- Number of attempts: 1
Rural Post - 4473 entries
Simple challenge to remove all but the post code on each line
- Best score: 9
- Best player score: 10
- Position: #212 / 1096
- Number of attempts: 2
Levenshtein distance - 105 entries
Compute distance for each pair. Notice that this recursive implementation is very inefficient. Wagner-Fischer algorithm is iterative and much faster. #vimscript
- Best score: 27
- Best player score: 36
- Position: #22 / 37
- 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: 20
- Position: #2 / 471
- Number of attempts: 4
Add quotes to ansible playbook - 952 entries
You created an ansible playbook, but forgot to add quotes. Can you fix it?
- Best score: 8
- Best player score: 9
- Position: #94 / 304
- Number of attempts: 3
Multiline to Single Line - 700 entries
Convert a multiline, indented file to a single line with no whitespace
- Best score: 5
- Best player score: 5
- Position: #35 / 302
- Number of attempts: 2
Simple, Practical, and Common - 33609 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: #1668 / 7415
- Number of attempts: 3
Hogwarts Email Sorting - 925 entries
Given a list of emails, get the students full name and their associated house.
- Best score: 20
- Best player score: 22
- Position: #125 / 261
- Number of attempts: 1
Reconstruct the actual output from my unit test tool report - 152 entries
When a test fails, my unit test tool reports differences between the actual output and the expected output as follow: - line in the expected output but missing in the actual output are prefixed with a dash - unexpected lines in the actual output are prefixed with a plus sign - comments added by the unit test tool are prefixed with a question mark - common lines are showed `as-is` (well, almost;) From that "diff" format, I would like to reconstruct the actual output.
- Best score: 16
- Best player score: 16
- Position: #12 / 52
- Number of attempts: 3
Swap values - 4616 entries
Well, swap the values...
- Best score: 11
- Best player score: 15
- Position: #934 / 1268
- Number of attempts: 3
prepend * to every non-blank line - 6304 entries
Prepend an asterisk to every non-blank line in the input file.
- Best score: 10
- Best player score: 10
- Position: #5 / 1536
- Number of attempts: 6
One number per line - 18722 entries
Just give me the numbers.
- Best score: 14
- Best player score: 15
- Position: #782 / 3860
- Number of attempts: 9
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: 9
- Position: #2 / 231
- Number of attempts: 3
V to the i - 4802 entries
Input is 99 V's. Output is 100 i's.
- Best score: 7
- Best player score: 7
- Position: #631 / 1893
- 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: 24
- Position: #125 / 258
- Number of attempts: 3
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: 28
- Position: #147 / 249
- Number of attempts: 1
Swap the operands under comparison - 297 entries
Swap the operands under comparison to prevent null pointer exception (at least in java)
- Best score: 19
- Best player score: 21
- Position: #46 / 101
- Number of attempts: 3
Add semicolons - 10848 entries
Simply add a semicolon at the end of each line
- Best score: 10
- Best player score: 11
- Position: #935 / 3061
- Number of attempts: 3
Bad Copy Syntax - 2033 entries
Copy should be from right to left, but sometimes you type it wrong.
- Best score: 18
- Best player score: 19
- Position: #91 / 524
- Number of attempts: 5
remove lines containing the word "reader" - 3583 entries
easy stuff
- Best score: 9
- Best player score: 10
- Position: #548 / 1161
- Number of attempts: 2
Com(m)a Trouble - 3815 entries
Someone was real stupid when placing his commas. Can you fix it?
- Best score: 12
- Best player score: 13
- Position: #230 / 864
- Number of attempts: 3
Box it - 7902 entries
Create a box around a line.
- Best score: 21
- Best player score: 21
- Position: #1 / 1874
- Number of attempts: 5
Triangular Numbers - 104 entries
Generate the first 50 triangular numbers.
- Best score: 18
- Best player score: 18
- Position: #16 / 29
- Number of attempts: 4
Hash staircase - 56 entries
Can you use a strategy to come up with this pattern?
- Best score: 21
- Best player score: 21
- Position: #8 / 25
- Number of attempts: 3
Cool or not? - 829 entries
abc trying to be cool or not...
- Best score: 15
- Best player score: 15
- Position: #14 / 230
- Number of attempts: 3
html paragraph to table - 606 entries
reformat html paragraph to table
- Best score: 48
- Best player score: 55
- Position: #49 / 126
- Number of attempts: 1
Two pairs of cluster of letters creates word - 749 entries
Clean and group.
- Best score: 17
- Best player score: 18
- Position: #64 / 178
- Number of attempts: 2
Convert Application Output to CSV - 203 entries
Change the application output to comma-separated values
- Best score: 17
- Best player score: 19
- Position: #41 / 56
- Number of attempts: 2
Kolakoski sequence -- level 1 - 74 entries
Generate the Kolakoski sequence as described by its first 75 terms.
- Best score: 22
- Best player score: 35
- Position: #16 / 19
- Number of attempts: 2
Letterbox - 145 entries
Make a box!
- Best score: 35
- Best player score: 47
- Position: #14 / 28
- Number of attempts: 2
Flip the bit - 130 entries
Change the specific 0 to a 1.
- Best score: 7
- Best player score: 8
- Position: #9 / 74
- Number of attempts: 1
The D a n k Side of the Moon - 50 entries
You're making a vaporwave cover of The Dark Side of the Moon. So for the tracklisting, you want to: 1. Change the track names to v a p o r c a s e 2. Double the track lengths (since you're slowing them down). Well... let's just double the minutes.
- Best score: 40
- Best player score: 41
- Position: #10 / 17
- Number of attempts: 3
Team names - 1836 entries
The team names are misspelled.
- Best score: 16
- Best player score: 16
- Position: #207 / 588
- 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: 20
- Position: #178 / 214
- Number of attempts: 3
ninja substitution - 1420 entries
How can you reuse a previous substitution ?
- Best score: 14
- Best player score: 15
- Position: #92 / 267
- Number of attempts: 5
Python challenge - 172 entries
Change the types of the variables in the list from str to float, while keeping the truncation.
- Best score: 31
- Best player score: 54
- Position: #34 / 46
- Number of attempts: 1
One to Ten - 2209 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: 14
- Position: #398 / 669
- Number of attempts: 18
Change part of a function name in multiple occurrences - 662 entries
Change the middle part of the function name in multiple places, preferably using the next and dot commands.
- Best score: 14
- Best player score: 15
- Position: #90 / 208
- Number of attempts: 4
Line under headers - 2037 entries
Put a line under each header, and remove the other markdown formatting.
- Best score: 24
- Best player score: 27
- Position: #94 / 501
- Number of attempts: 3
Build a six - 294 entries
Just enjoy building "a" floors...
- Best score: 22
- Best player score: 25
- Position: #77 / 95
- Number of attempts: 2
Increment each number - 1023 entries
Increment each number individually by one
- Best score: 15
- Best player score: 15
- Position: #5 / 248
- Number of attempts: 6
Around the clock - 199 entries
You'll want to use 2 special commands to complete this. If you haven't yet, read through 'input.txt', especially :help simple-changes
- Best score: 13
- Best player score: 13
- Position: #21 / 77
- Number of attempts: 4
Join 'em - 251 entries
This shouldn't be too tough
- Best score: 4
- Best player score: 5
- Position: #94 / 151
- Number of attempts: 2
snowflake fractal - 51 entries
From step 0 to step 3 of a fractal
- Best score: 26
- Best player score: 26
- Position: #6 / 20
- Number of attempts: 3
Delete to the end of the current line - 811 entries
Delete to the end of the current line, but keep the character under the cursor.
- Best score: 5
- Best player score: 5
- Position: #62 / 390
- Number of attempts: 3
Song Transcription Oops - 243 entries
When transcribing vocal music to Canjo Tab you can start by finding the lowest note and assigning that to zero and working your way up from there. However, without fail, I tend to miscount the notes and when I am near done I find a lower note. I mark this with a "z". This means I have to increase all the previous ones by 1. just a sting of numbers :)
- Best score: 15
- Best player score: 15
- Position: #1 / 78
- Number of attempts: 1
change parenthesis - 296 entries
change the pair of braces into a pair of parentheses
- Best score: 9
- Best player score: 9
- Position: #35 / 161
- Number of attempts: 2
Remove quotes after first field - 380 entries
Remove the quotes around each field except for the first field.
- Best score: 16
- Best player score: 24
- Position: #63 / 91
- Number of attempts: 3
Put the months in order - 974 entries
Our contractor thought that months should be in alphabetical order. Put them in calendar order please.
- Best score: 20
- Best player score: 53
- Position: #138 / 163
- Number of attempts: 1
Reorder the groups - 1181 entries
Change the order so that the groups of fruit come before the vegetables.
- Best score: 14
- Best player score: 14
- Position: #35 / 264
- Number of attempts: 5
move titles next to url, in quotes - 529 entries
had trouble with something similar
- Best score: 19
- Best player score: 22
- Position: #68 / 139
- Number of attempts: 3
convert yml into java pojo field - 857 entries
How fast vim can create fields for java pojo i.e class declaration referring to a (simple) yml file
- Best score: 29
- Best player score: 30
- Position: #113 / 227
- Number of attempts: 4
Kolakoski sequence -- level 2 - 16 entries
This time, the line above describes the line below. Level 1 at: http://www.vimgolf.com/challenges/5c880211ab65cb00065c74eb
- Best score: 37
- Best player score: 50
- Position: #5 / 8
- Number of attempts: 1
I forgot quotes - 15977 entries
Oops.
- Best score: 10
- Best player score: 14
- Position: #1816 / 4177
- Number of attempts: 3
Rule 110 - 46 entries
Compute the next 5 iterations of Rule 110 with the given starting state. https://en.wikipedia.org/wiki/Rule_110
- Best score: 43
- Best player score: 46
- Position: #5 / 13
- Number of attempts: 3
Pascal's Triangle - 38 entries
Generate the first 17 left-justified rows of Pascal's triangle.
- Best score: 36
- Best player score: 36
- Position: #7 / 17
- Number of attempts: 2
Simple Maths 2 - 44 entries
Time to practice expression register! #maths #linear
- Best score: 17
- Best player score: 17
- Position: #4 / 16
- Number of attempts: 4
Assignment Alignment - 883 entries
line up the operators. Use spaces, not tabs.
- Best score: 18
- Best player score: 18
- Position: #49 / 220
- Number of attempts: 11
Reverse characters in a line - 757 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: 13
- Position: #78 / 263
- Number of attempts: 5
Contributed Challenges
Pascal's Triangle - 38 entries
Generate the first 17 left-justified rows of Pascal's triangle.
Triangular Numbers - 104 entries
Generate the first 50 triangular numbers.