jackmcd4/CoderByte-Medium-Problems

Fibonacci checker doesn't account for num = 0 or 1

Opened this issue · 0 comments

This was the solution i was looking for, other than it failed at num = 1. I added || num = 1 || num == 0 at the first 'if' line, but I'm very new and have no idea if that is appropriate.