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

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

223 active golfers, 1379 entries

Solutions by @nspriego:
14
#13 - Nathan Priego / @nspriego

03/06/2025 at 04:35AM

15
#>17 - Nathan Priego / @nspriego

03/06/2025 at 04:33AM

16
#>31 - Nathan Priego / @nspriego

03/06/2025 at 04:32AM

17
#>36 - Nathan Priego / @nspriego

03/06/2025 at 04:31AM

18
#>44 - Nathan Priego / @nspriego

03/06/2025 at 04:29AM

19
#>61 - Nathan Priego / @nspriego

03/06/2025 at 04:26AM

20
#>69 - Nathan Priego / @nspriego

03/06/2025 at 04:21AM

21
#>77 - Nathan Priego / @nspriego

03/06/2025 at 04:14AM

26
#>121 - Nathan Priego / @nspriego

03/06/2025 at 03:54AM