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 6013804df3308e0009368f1c

Python dataclasses

Simple challenge to extract fields from a Python class

Start file
from dataclasses import dataclass

@dataclass
class Student:
    student_id: str
    name: str
    age: int 
    score: float

fields = ""

End file
from dataclasses import dataclass

@dataclass
class Student:
    student_id: str
    name: str
    age: int 
    score: float

fields = "student_id,name,age,score"

View Diff

10c10
< fields = ""
---
> fields = "student_id,name,age,score"

Solutions by @SusSquirrel:

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

248 active golfers, 982 entries

Solutions by @SusSquirrel:
19
#19 - Arya Kumar / @SusSquirrel

05/16/2021 at 03:18AM

20
#>74 - Arya Kumar / @SusSquirrel

05/16/2021 at 03:17AM

21
#>98 - Arya Kumar / @SusSquirrel

05/16/2021 at 03:13AM

23
#>103 - Arya Kumar / @SusSquirrel

05/16/2021 at 03:08AM

27
#>133 - Arya Kumar / @SusSquirrel

05/16/2021 at 03:06AM

28
#>138 - Arya Kumar / @SusSquirrel

05/16/2021 at 03:01AM

30
#>155 - Arya Kumar / @SusSquirrel

05/16/2021 at 02:55AM

32
#>175 - Arya Kumar / @SusSquirrel

05/16/2021 at 02:43AM

36
#>205 - Arya Kumar / @SusSquirrel

05/16/2021 at 02:33AM