Up goreport score

This commit is contained in:
halfrost
2022-09-09 20:20:20 +08:00
parent e227edf55a
commit dff1d84e1e
4 changed files with 8 additions and 8 deletions

View File

@ -32,7 +32,7 @@ func splitIntoFibonacci(S string) []int {
return res
}
//Propagate for rest of the string
// Propagate for rest of the string
func findRecursiveCheck(S string, x1 int, x2 int, left int, res *[]int, isComplete *bool) {
if x1 >= 1<<31 || x2 >= 1<<31 { // 题目要求每个数都要小于 2^31 - 1 = 2147483647此处剪枝很关键
return