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 @lc-hanxi:

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

235 active golfers, 1435 entries

Solutions by @lc-hanxi:
19
#55 - lc-hanxi / @lc-hanxi

08/08/2024 at 01:11PM

20
#>65 - lc-hanxi / @lc-hanxi

08/08/2024 at 12:36PM

21
#>75 - lc-hanxi / @lc-hanxi

08/08/2024 at 12:22PM

22
#>79 - lc-hanxi / @lc-hanxi

08/08/2024 at 12:15PM

27
#>126 - lc-hanxi / @lc-hanxi

08/08/2024 at 12:03PM

33
#>161 - lc-hanxi / @lc-hanxi

08/08/2024 at 11:20AM