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

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

205 active golfers, 1298 entries

Solutions by @penguinwithpants:
18
#38 - penguinwithpants / @penguinwithpants

08/27/2024 at 08:18PM

19
#>54 - penguinwithpants / @penguinwithpants

08/27/2024 at 08:17PM

20
#>62 - penguinwithpants / @penguinwithpants

08/27/2024 at 01:30PM

22
#>76 - penguinwithpants / @penguinwithpants

08/27/2024 at 01:27PM

24
#>96 - penguinwithpants / @penguinwithpants

08/27/2024 at 01:22PM

26
#>112 - penguinwithpants / @penguinwithpants

08/27/2024 at 01:20PM

29
#>129 - penguinwithpants / @penguinwithpants

08/27/2024 at 12:59AM

32
#>144 - penguinwithpants / @penguinwithpants

08/27/2024 at 12:56AM

45
#>180 - penguinwithpants / @penguinwithpants

08/27/2024 at 12:43AM