We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d7dfd6 commit 6a7204bCopy full SHA for 6a7204b
go-16/err_test.go
@@ -26,7 +26,7 @@ func GetFibonacci(n int) ([]int, error) {
26
return nil, LargerThenHundredError
27
}
28
fibList := []int{1, 1}
29
- //实现个小学数学题,斐波那契列方法
+ //斐波那契列,小学数学题
30
for i := 2; i < n; i++ {
31
fibList = append(fibList, fibList[i-2]+fibList[i-1])
32
0 commit comments