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

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

308 active golfers, 1334 entries

Solutions by @bennyboy999:
34
#43 - Benny Boy / @bennyboy999

10/02/2021 at 07:29PM

35
#>81 - Benny Boy / @bennyboy999

10/02/2021 at 07:28PM

36
#>95 - Benny Boy / @bennyboy999

10/02/2021 at 07:27PM

37
#>106 - Benny Boy / @bennyboy999

10/02/2021 at 07:25PM

38
#>112 - Benny Boy / @bennyboy999

10/02/2021 at 07:21PM

44
#>164 - Benny Boy / @bennyboy999

10/02/2021 at 07:17PM

87
#>296 - Benny Boy / @bennyboy999

10/02/2021 at 07:12PM