DEV Community

NDONGO TONUX SAMB
NDONGO TONUX SAMB

Posted on

1

Fibonacci in Kotlin

The Fibonacci sequence is a sequence of integers in which each term is the sum of the two preceding terms.
Alt kotlin

Top comments (1)

Collapse
 
madza profile image
Madza β€’ β€’ Edited

const fib=n=>[...Array(n)].reduce((acc,val,i)=>acc.concat(i>1?acc[i-1]+acc[i-2]:i),[])

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

πŸ‘‹ Kindness is contagious

Please leave a ❀️ or a friendly comment on this post if you found it helpful!

Okay