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

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

415 active golfers, 1402 entries

Solutions by @selmir_aljic:
15
#123 - Selmir Aljic / @selmir_aljic

08/08/2023 at 02:20PM

18
#>301 - Selmir Aljic / @selmir_aljic

08/08/2023 at 02:12PM

22
#>326 - Selmir Aljic / @selmir_aljic

08/08/2023 at 02:10PM

25
#>335 - Selmir Aljic / @selmir_aljic

08/08/2023 at 01:53PM

36
#>358 - Selmir Aljic / @selmir_aljic

08/08/2023 at 01:46PM

42
#>373 - Selmir Aljic / @selmir_aljic

08/08/2023 at 01:41PM

44
#>375 - Selmir Aljic / @selmir_aljic

08/08/2023 at 01:38PM

63
#>388 - Selmir Aljic / @selmir_aljic

08/08/2023 at 01:30PM

182
#>412 - Selmir Aljic / @selmir_aljic

08/08/2023 at 02:09PM