minor modification

This commit is contained in:
Logen
2023-02-13 08:59:42 -06:00
parent 3347033a2e
commit e41471fdf6

View File

@ -219,9 +219,6 @@ class Solution:
def fib(self, n: int) -> int:
# 排除 Corner Case
if n == 1:
return 1
if n == 0:
return 0