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

Find fix point of cos

Write a function to find the fix point of cos. It is not a good code; It is just to use vim. Inspired by the excellent https://mvanier.livejournal.com/2897.html about the Y combinator.

Start file
from math import cos


def find_cos_fix_point(j):
    a = 12.216
    for i in range(j):
        a = cos(a)

    print(a)


find_cos_fix_point(1)
End file
from math import cos


def find_cos_fix_point(j):
    a = 12.216
    for i in range(j):
        a = cos(a)

    print(a)


find_cos_fix_point(1)
find_cos_fix_point(10)
find_cos_fix_point(100)
find_cos_fix_point(1000)
find_cos_fix_point(10000)
find_cos_fix_point(100000)
find_cos_fix_point(1000000)
find_cos_fix_point(10000000)
find_cos_fix_point(100000000)

View Diff

12a13,20
> find_cos_fix_point(10)
> find_cos_fix_point(100)
> find_cos_fix_point(1000)
> find_cos_fix_point(10000)
> find_cos_fix_point(100000)
> find_cos_fix_point(1000000)
> find_cos_fix_point(10000000)
> find_cos_fix_point(100000000)

Solutions by @ProGamerYeet:

Unlock 13 remaining solutions by signing in and submitting your own entry
Created by: @zmf_tim

431 active golfers, 1468 entries

Solutions by @ProGamerYeet:
14
#76 - ProGamerYeet / @ProGamerYeet

10/10/2024 at 12:24PM

15
#>252 - ProGamerYeet / @ProGamerYeet

10/10/2024 at 12:21PM

15
#>252 - ProGamerYeet / @ProGamerYeet

10/10/2024 at 12:22PM

17
#>310 - ProGamerYeet / @ProGamerYeet

10/10/2024 at 12:20PM

21
#>337 - ProGamerYeet / @ProGamerYeet

10/10/2024 at 12:18PM

23
#>346 - ProGamerYeet / @ProGamerYeet

10/10/2024 at 12:15PM

27
#>357 - ProGamerYeet / @ProGamerYeet

10/10/2024 at 12:11PM

31
#>366 - ProGamerYeet / @ProGamerYeet

10/10/2024 at 12:09PM

32
#>369 - ProGamerYeet / @ProGamerYeet

10/10/2024 at 12:07PM

33
#>372 - ProGamerYeet / @ProGamerYeet

10/10/2024 at 12:06PM

34
#>373 - ProGamerYeet / @ProGamerYeet

10/10/2024 at 12:03PM

41
#>389 - ProGamerYeet / @ProGamerYeet

10/10/2024 at 12:02PM

55
#>400 - ProGamerYeet / @ProGamerYeet

10/10/2024 at 12:00PM