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 9v0060da5177000000000209

Plotting some variables in python

4 sets of (x,y) variables to plot. Just increment the numbers! Well, let's change the colors of the lines as well. Oh and we meant to plot the absolute values of course.

Start file
def Plot_All():
    plt.plot(x1,y1,color='k',lw=0.8,label="line #1")
    plt.plot(x1,y1,color='k',lw=0.8,label="line #1")
    plt.plot(x1,y1,color='k',lw=0.8,label="line #1")
    plt.plot(x1,y1,color='k',lw=0.8,label="line #1")
End file
def Plot_All():
    plt.plot(x1,abs(y1),color='k',lw=0.8,label="line #1")
    plt.plot(x2,abs(y2),color='b',lw=0.8,label="line #2")
    plt.plot(x3,abs(y3),color='r',lw=0.8,label="line #3")
    plt.plot(x4,abs(y4),color='g',lw=0.8,label="line #4")

View Diff

2,5c2,5
<     plt.plot(x1,y1,color='k',lw=0.8,label="line #1")
<     plt.plot(x1,y1,color='k',lw=0.8,label="line #1")
<     plt.plot(x1,y1,color='k',lw=0.8,label="line #1")
<     plt.plot(x1,y1,color='k',lw=0.8,label="line #1")
---
>     plt.plot(x1,abs(y1),color='k',lw=0.8,label="line #1")
>     plt.plot(x2,abs(y2),color='b',lw=0.8,label="line #2")
>     plt.plot(x3,abs(y3),color='r',lw=0.8,label="line #3")
>     plt.plot(x4,abs(y4),color='g',lw=0.8,label="line #4")

Solutions by @YeontaekK:

Unlock 19 remaining solutions by signing in and submitting your own entry
Created by: @AWhiteDwarf1

334 active golfers, 1567 entries

Solutions by @YeontaekK:
34
#25 - Yeontaek Kim / @YeontaekK

08/25/2021 at 07:27AM

35
#>64 - Yeontaek Kim / @YeontaekK

08/25/2021 at 07:26AM

36
#>84 - Yeontaek Kim / @YeontaekK

08/25/2021 at 07:19AM

37
#>92 - Yeontaek Kim / @YeontaekK

08/25/2021 at 07:15AM

38
#>101 - Yeontaek Kim / @YeontaekK

08/25/2021 at 07:13AM

39
#>107 - Yeontaek Kim / @YeontaekK

08/25/2021 at 07:05AM

39
#>107 - Yeontaek Kim / @YeontaekK

08/25/2021 at 07:12AM

40
#>114 - Yeontaek Kim / @YeontaekK

08/25/2021 at 07:00AM

45
#>163 - Yeontaek Kim / @YeontaekK

08/25/2021 at 06:53AM

46
#>165 - Yeontaek Kim / @YeontaekK

08/25/2021 at 06:45AM

49
#>189 - Yeontaek Kim / @YeontaekK

08/25/2021 at 06:39AM

52
#>209 - Yeontaek Kim / @YeontaekK

08/25/2021 at 06:35AM

53
#>212 - Yeontaek Kim / @YeontaekK

08/25/2021 at 06:33AM

57
#>235 - Yeontaek Kim / @YeontaekK

08/25/2021 at 05:49AM

58
#>238 - Yeontaek Kim / @YeontaekK

08/25/2021 at 05:40AM

59
#>242 - Yeontaek Kim / @YeontaekK

08/25/2021 at 05:30AM

62
#>268 - Yeontaek Kim / @YeontaekK

08/25/2021 at 04:45AM

72
#>303 - Yeontaek Kim / @YeontaekK

08/25/2021 at 04:30AM

99
#>319 - Yeontaek Kim / @YeontaekK

08/18/2021 at 12:33PM