aboutsummaryrefslogtreecommitdiff
path: root/entries/dewert99
diff options
context:
space:
mode:
Diffstat (limited to 'entries/dewert99')
-rw-r--r--entries/dewert99/fib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/entries/dewert99/fib.rs b/entries/dewert99/fib.rs
index b1744d5..ecf0a85 100644
--- a/entries/dewert99/fib.rs
+++ b/entries/dewert99/fib.rs
@@ -14,7 +14,7 @@ const fn fibc<const N: usize>() -> [u64; N] {
static FIB: [u64; MAX] = fibc();
pub fn fib(n: usize) -> Option<u64> {
- if n > MAX {
+ if n >= MAX {
None // Fib of n wouldn't fit in 64-bits
} else {
Some(FIB[n])