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

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

207 active golfers, 1301 entries

Solutions by @Pireax:
15
#14 - Pim / @Pireax

11/08/2024 at 01:51AM

16
#>29 - Pim / @Pireax

11/08/2024 at 01:47AM

17
#>32 - Pim / @Pireax

11/08/2024 at 01:42AM

18
#>41 - Pim / @Pireax

11/08/2024 at 01:41AM

19
#>58 - Pim / @Pireax

11/08/2024 at 01:40AM

20
#>65 - Pim / @Pireax

11/08/2024 at 01:39AM

21
#>74 - Pim / @Pireax

11/08/2024 at 01:36AM

22
#>77 - Pim / @Pireax

11/08/2024 at 01:33AM

23
#>87 - Pim / @Pireax

11/08/2024 at 01:01AM

24
#>100 - Pim / @Pireax

11/08/2024 at 12:57AM

25
#>105 - Pim / @Pireax

11/02/2024 at 01:03PM

28
#>127 - Pim / @Pireax

11/02/2024 at 01:00PM

35
#>162 - Pim / @Pireax

11/02/2024 at 12:47PM