auto commit

This commit is contained in:
CyC2018
2019-04-11 20:04:19 +08:00
parent ff34081086
commit e9f1615110
6 changed files with 10 additions and 8 deletions

View File

@ -107,7 +107,6 @@ public class Solution {
public Solution() {
fib[1] = 1;
fib[2] = 2;
for (int i = 2; i < fib.length; i++)
fib[i] = fib[i - 1] + fib[i - 2];
}