download
raw
177 Bytes
'use strict'
function fib (num) {
var fib = []
fib[0] = 0
fib[1] = 1
for (var i = 2; i <= num; i++) {
fib[i] = fib[i - 2] + fib[i - 1]
}
}
module.exports = fib

Xet Storage Details

Size:
177 Bytes
·
Xet hash:
96511faea3282db5dc3084764f1c2e07c86161d48b45e3b041486f6e28436183

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.