Played Challenges
Simple, Practical, and Common - 33940 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: 29
- Position: #4919 / 7494
- Number of attempts: 2
One number per line - 18861 entries
Just give me the numbers.
- Best score: 14
- Best player score: 19
- Position: #1925 / 3895
- Number of attempts: 1
Unsemantic linewrapping - 943 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: 13
- Position: #188 / 235
- Number of attempts: 3
Add string initializers to an enum - 899 entries
Change Typescript enum so that it has string initializers.
- Best score: 21
- Best player score: 26
- Position: #165 / 264
- Number of attempts: 2
SCREAMING_SNAKE_CASE to Title Case - 1269 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: 34
- Position: #221 / 264
- Number of attempts: 2
Add semicolons - 10929 entries
Simply add a semicolon at the end of each line
- Best score: 10
- Best player score: 15
- Position: #2237 / 3089
- Number of attempts: 1
remove lines containing the word "reader" - 3631 entries
easy stuff
- Best score: 9
- Best player score: 11
- Position: #920 / 1179
- Number of attempts: 1
Com(m)a Trouble - 3969 entries
Someone was real stupid when placing his commas. Can you fix it?
- Best score: 12
- Best player score: 16
- Position: #501 / 902
- Number of attempts: 5
Box it - 7987 entries
Create a box around a line.
- Best score: 21
- Best player score: 28
- Position: #1245 / 1895
- Number of attempts: 1
Just the middle - 11562 entries
Delete the instructions at the top and bottom.
- Best score: 7
- Best player score: 8
- Position: #2933 / 4235
- Number of attempts: 4
Line under headers - 2087 entries
Put a line under each header, and remove the other markdown formatting.
- Best score: 24
- Best player score: 34
- Position: #356 / 513
- Number of attempts: 3
convert yml into java pojo field - 873 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: 34
- Position: #184 / 231
- Number of attempts: 2
Exchanging Quotes - 864 entries
Sometimes you need to exchange a choice of quotes in some code.
- Best score: 30
- Best player score: 38
- Position: #140 / 232
- Number of attempts: 3
replacing each line of a block selection - 3028 entries
replace each line's ../assets/js with /javascripts
- Best score: 18
- Best player score: 21
- Position: #341 / 784
- Number of attempts: 5
Append semicolon after expressions - 1065 entries
Some lines need the semicolon, some don't.
- Best score: 11
- Best player score: 12
- Position: #154 / 422
- Number of attempts: 4
Reverse and double space - 500 entries
Reverse the order of the given lines and double space everything
- Best score: 14
- Best player score: 16
- Position: #88 / 199
- Number of attempts: 4
Remove noise from HTTP log - 733 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: 17
- Position: #204 / 278
- Number of attempts: 1
Remove semicolons after expressions - 669 entries
A follow-up for http://vimgolf.com/challenges/4fc9d767d3a0d4000100000e.
- Best score: 6
- Best player score: 8
- Position: #157 / 265
- Number of attempts: 3
switch variable - 5101 entries
how fast can you switch two variable ?
- Best score: 11
- Best player score: 11
- Position: #96 / 1756
- Number of attempts: 11
The meaning - 577 entries
Numbers are fun!
- Best score: 5
- Best player score: 5
- Position: #19 / 364
- Number of attempts: 1
Calculate the table totals - 152 entries
Go ahead... commit the treachery of using vim as a spreadsheet.
- Best score: 33
- Best player score: 52
- Position: #27 / 46
- Number of attempts: 5
Replacing some words - 428 entries
How fast could it be?
- Best score: 17
- Best player score: 28
- Position: #109 / 151
- Number of attempts: 1
Make it more readable - 2015 entries
Insert blank lines to make it more organized and readable
- Best score: 13
- Best player score: 15
- Position: #233 / 654
- Number of attempts: 5
remove dupes from array - 1361 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: 22
- Position: #166 / 338
- Number of attempts: 3
Alphabetize the directory - 298 entries
Put the contacts and their information in alphabetical order.
- Best score: 30
- Best player score: 39
- Position: #78 / 101
- Number of attempts: 1
PHP Array Syntax -> MailChimp Merge Syntax - 550 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: 37
- Position: #100 / 151
- Number of attempts: 4
Refactor to Helpers - 50 entries
This Rails partial is almost all template escapes. Put it into a helper, and refactor each case to methods so we can build out the controls for each. (I've converted to tabs - fighting with Vimgolf's default config shouldn't be part of the challenge.)
- Best score: 147
- Best player score: 352
- Position: #17 / 25
- Number of attempts: 1
Numbering a List - 1941 entries
Pretty simple, number the list.
- Best score: 13
- Best player score: 22
- Position: #434 / 657
- Number of attempts: 3
Contributed Challenges
Exchanging Quotes - 864 entries
Sometimes you need to exchange a choice of quotes in some code.
Jonathan Lozinski
Twitter: @jlozinski
Director of Engineering at Arm, Cloud Services. Views expressed are not of my employer. We're lucky if they're even mine.
VimGolf