balu: (Gene Kranz. Запарка.)
от. Михайло ([personal profile] balu) wrote in [personal profile] euthanasepam 2021-07-13 08:09 am (UTC)

Ще тупіший алгоритм:

(require 'cl)

(defun fib-loop (num)
  (cl-do ((n 0 (1+ n))
       (cur 0 next)
       (next 1 (+ cur next)))
      ((= num n) cur)))

ELISP> (benchmark 1 (fib-loop 100500))
"Elapsed time: 0.000002s"

Post a comment in response:

This account has disabled anonymous posting.
If you don't have an account you can create one now.
HTML doesn't work in the subject.
More info about formatting