func findNumbers(nums []int) int { // 计数 ans := 0 for _, v := range nums { i := 0 for v != 0 { i++ v /= 10 } if i%2 == 0 { ans++ } } return ans }