Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 141 Bytes

83-Fibrec.md

File metadata and controls

9 lines (7 loc) · 141 Bytes

Fibrec

Página 83

función Fibrec (n)
    si n < 2 entonces devolver n
    sino devolver Fibrec (n - 1) + Fibrec (n - 2)