Skip to content

Commit 6a7204b

Browse files
committed
20220401
1 parent 6d7dfd6 commit 6a7204b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

go-16/err_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func GetFibonacci(n int) ([]int, error) {
2626
return nil, LargerThenHundredError
2727
}
2828
fibList := []int{1, 1}
29-
//实现个小学数学题,斐波那契列方法
29+
//斐波那契列,小学数学题
3030
for i := 2; i < n; i++ {
3131
fibList = append(fibList, fibList[i-2]+fibList[i-1])
3232
}

0 commit comments

Comments
 (0)