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

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

205 active golfers, 1298 entries

Solutions by @Neix20:
18
#40 - Neix20 / @Neix20

10/02/2024 at 08:47AM

19
#>58 - Neix20 / @Neix20

10/02/2024 at 08:46AM

20
#>64 - Neix20 / @Neix20

10/02/2024 at 08:45AM

21
#>74 - Neix20 / @Neix20

10/02/2024 at 08:44AM

22
#>77 - Neix20 / @Neix20

10/02/2024 at 08:43AM

23
#>86 - Neix20 / @Neix20

10/02/2024 at 08:22AM

25
#>104 - Neix20 / @Neix20

10/02/2024 at 08:21AM

28
#>125 - Neix20 / @Neix20

10/02/2024 at 08:19AM

32
#>147 - Neix20 / @Neix20

10/02/2024 at 08:16AM