Skip to content

Commit

Permalink
minor modification
Browse files Browse the repository at this point in the history
  • Loading branch information
Logenleedev committed Feb 13, 2023
1 parent 3347033 commit e41471f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions problems/0509.斐波那契数.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,6 @@ class Solution:
def fib(self, n: int) -> int:

# 排除 Corner Case
if n == 1:
return 1

if n == 0:
return 0

Expand Down

0 comments on commit e41471f

Please sign in to comment.