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 5fd1ea4cf90da80006545d46

Modernise code

Modernise and clean up some C++ code.

Start file
std::vector<int> numbers;
numbers.push_back(1337);
numbers.push_back(424242);
numbers.push_back(12345678);
numbers.push_back(3141);
End file
auto numbers = { 1337, 424242, 12345678, 3141 };

View Diff

1,5c1
< std::vector<int> numbers;
< numbers.push_back(1337);
< numbers.push_back(424242);
< numbers.push_back(12345678);
< numbers.push_back(3141);
---
> auto numbers = { 1337, 424242, 12345678, 3141 };

Solutions by @Michael62785035:

Unlock 7 remaining solutions by signing in and submitting your own entry
Created by: @nd1832

310 active golfers, 1343 entries

Solutions by @Michael62785035:
34
#35 - Michael / @Michael62785035

05/24/2021 at 08:12PM

35
#>78 - Michael / @Michael62785035

05/24/2021 at 07:48PM

36
#>96 - Michael / @Michael62785035

05/24/2021 at 07:44PM

37
#>106 - Michael / @Michael62785035

05/24/2021 at 07:42PM

38
#>113 - Michael / @Michael62785035

05/24/2021 at 07:26PM

40
#>123 - Michael / @Michael62785035

05/24/2021 at 07:14PM

44
#>164 - Michael / @Michael62785035

05/24/2021 at 03:09PM