ornith-256k-bench / data /pi_agent_suite /t2-code-write.out
ChengyiX's picture
Raw measurement records: streaming, context proof, head-to-head, pi agent suite
0981686 verified
Raw
History Blame Contribute Delete
323 Bytes
Done. Created `fib.py` and verified with `python3 fib.py`.
**Results:**
- `fib(10) == 55` ✓
- Negative `n` raises `ValueError` ✓ (tested with `-1` and `-5`)
The function uses iteration with a two-variable loop, so it runs in O(n) time and O(1) space, and handles the edge cases `fib(0)==0` and `fib(1)==1` correctly.