Reordered jump cases
This commit is contained in:
@ -3,7 +3,7 @@ main() {
|
||||
}
|
||||
|
||||
fibonacci(x) {
|
||||
if x == 1 || x == 0 {
|
||||
if x <= 1 {
|
||||
return x
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user