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

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

205 active golfers, 1298 entries

Solutions by @tncargil:
24
#96 - tncargil / @tncargil

08/25/2024 at 03:16AM

25
#>101 - tncargil / @tncargil

08/25/2024 at 02:59AM

26
#>111 - tncargil / @tncargil

08/25/2024 at 02:55AM

29
#>129 - tncargil / @tncargil

08/24/2024 at 09:34PM

33
#>151 - tncargil / @tncargil

08/24/2024 at 09:21PM

43
#>178 - tncargil / @tncargil

08/24/2024 at 09:18PM