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

RUST match with enum for Coin

RUST match with enum for Coin rusty practice on vimgolf

Start file
enum Coin {
	Penny,
	Nickel,
	Dime,
	Quarter,
}
End file
enum Coin {
	Penny,
	Nickel,
	Dime,
	Quarter,
}

fn value_in_cents(coin: Coin) -> u32 {
	match coin {
		Coin::Penny => 1,
		Coin::Nickel => 5,
		Coin::Dime => 10,
		Coin::Quarter => 25,
	}
}

View Diff

6a7,15
> 
> fn value_in_cents(coin: Coin) -> u32 {
> 	match coin {
> 		Coin::Penny => 1,
> 		Coin::Nickel => 5,
> 		Coin::Dime => 10,
> 		Coin::Quarter => 25,
> 	}
> }

Solutions by @RomanPrivalov:

Unlock 12 remaining solutions by signing in and submitting your own entry
Created by: @pykJzzzsmAzloZl

50 active golfers, 176 entries

Solutions by @RomanPrivalov:
84
#1 - Roman Privalov / @RomanPrivalov

09/03/2021 at 02:07PM

85
#>2 - Roman Privalov / @RomanPrivalov

09/03/2021 at 02:20PM

86
#>4 - Roman Privalov / @RomanPrivalov

09/03/2021 at 01:55PM

87
#>5 - Roman Privalov / @RomanPrivalov

09/03/2021 at 01:36PM

88
#>7 - Roman Privalov / @RomanPrivalov

09/03/2021 at 01:02PM

91
#>10 - Roman Privalov / @RomanPrivalov

09/03/2021 at 12:50PM

91
#>10 - Roman Privalov / @RomanPrivalov

09/03/2021 at 12:55PM

93
#>14 - Roman Privalov / @RomanPrivalov

09/03/2021 at 12:46PM

95
#>16 - Roman Privalov / @RomanPrivalov

09/03/2021 at 12:38PM

99
#>17 - Roman Privalov / @RomanPrivalov

09/03/2021 at 12:27PM

107
#>26 - Roman Privalov / @RomanPrivalov

09/03/2021 at 12:07PM

116
#>35 - Roman Privalov / @RomanPrivalov

09/03/2021 at 11:58AM