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

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

222 active golfers, 1376 entries

Solutions by @zulolosi:
16
#21 - Petro Тrouq / @zulolosi

08/05/2024 at 03:11PM

19
#>51 - Petro Тrouq / @zulolosi

08/05/2024 at 03:03PM

20
#>63 - Petro Тrouq / @zulolosi

08/05/2024 at 02:42PM

21
#>73 - Petro Тrouq / @zulolosi

08/05/2024 at 12:38PM

26
#>116 - Petro Тrouq / @zulolosi

08/05/2024 at 12:24PM

63
#>203 - Petro Тrouq / @zulolosi

08/05/2024 at 12:18PM