Real Vim ninjas count every keystroke - do you?

Pick a challenge, fire up Vim, and show us what you got.

Changelog, Rules & FAQ, updates: @vimgolf, RSS.

Your VimGolf key: please sign in

$ gem install vimgolf
$ vimgolf setup
$ vimgolf put 9v00669b3ff1000000000303

Rearrange array to single level

The goal is to flatten the array into a single list and remove any empty elements.

Start file
[
   
[]  ,
   
[''],
   
['0', '1', '2'],
   
['3', '4', '5'],
   
['6', '7'],
   
['8', '9'],
   
['']
]
End file
['', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '']

View Diff

1,9c1
< [
<     []  ,
<     [''],
<     ['0', '1', '2'],
<     ['3', '4', '5'],
<     ['6', '7'],
<     ['8', '9'],
<     ['']
< ]
---
> ['', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '']

Solutions by @BufferKong:

Unlock 10 remaining solutions by signing in and submitting your own entry
Created by: @maharba6

239 active golfers, 1461 entries

Solutions by @BufferKong:
43
#203 - BufferKong / @BufferKong

09/25/2024 at 06:34PM

45
#>206 - BufferKong / @BufferKong

09/25/2024 at 06:31PM

51
#>209 - BufferKong / @BufferKong

09/25/2024 at 06:25PM

62
#>217 - BufferKong / @BufferKong

09/24/2024 at 07:54PM

62
#>217 - BufferKong / @BufferKong

09/24/2024 at 08:07PM

105
#>228 - BufferKong / @BufferKong

09/24/2024 at 07:44PM

117
#>228 - BufferKong / @BufferKong

09/24/2024 at 07:39PM

146
#>232 - BufferKong / @BufferKong

09/23/2024 at 07:52PM

154
#>232 - BufferKong / @BufferKong

09/24/2024 at 07:51PM

512
#>238 - BufferKong / @BufferKong

09/23/2024 at 07:44PM