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 @OwariDa:

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

229 active golfers, 1396 entries

Solutions by @OwariDa:
16
#32 - Joel Eriksson / @OwariDa

04/08/2025 at 04:56AM

16
#>32 - Joel Eriksson / @OwariDa

04/08/2025 at 01:17PM

17
#>37 - Joel Eriksson / @OwariDa

04/08/2025 at 02:56AM

18
#>45 - Joel Eriksson / @OwariDa

04/08/2025 at 02:40AM

20
#>70 - Joel Eriksson / @OwariDa

04/08/2025 at 01:50AM

22
#>82 - Joel Eriksson / @OwariDa

04/08/2025 at 01:45AM

23
#>91 - Joel Eriksson / @OwariDa

04/08/2025 at 01:39AM