diff options
author | Braxton Hall | 2022-10-24 23:57:10 +0000 |
---|---|---|
committer | GitHub | 2022-10-24 23:57:10 +0000 |
commit | 5d043fb633bffeddb5ba5a0543d121c817365a8e (patch) | |
tree | 79a740b40e895c6aa47d4ec1951cf1b093caed27 /entries/dewert99/fib.rs | |
parent | b9f9263c9f1590c043e38987935fc656834192b6 (diff) | |
parent | 5b3e4fb8a606385392b24dba3553db3dcb1cd711 (diff) |
Merge branch 'main' into main
Diffstat (limited to 'entries/dewert99/fib.rs')
-rw-r--r-- | entries/dewert99/fib.rs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/entries/dewert99/fib.rs b/entries/dewert99/fib.rs new file mode 100644 index 0000000..ecf0a85 --- /dev/null +++ b/entries/dewert99/fib.rs @@ -0,0 +1,22 @@ +const MAX: usize = 94; + +const fn fibc<const N: usize>() -> [u64; N] { + let mut res = [0; N]; + res[1] = 1; + let mut i = 2; + while i < N { + res[i] = res[i - 1] + res[i - 2]; + i += 1; + } + res +} + +static FIB: [u64; MAX] = fibc(); + +pub fn fib(n: usize) -> Option<u64> { + if n >= MAX { + None // Fib of n wouldn't fit in 64-bits + } else { + Some(FIB[n]) + } +} |