We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e60d06 commit 33e8f57Copy full SHA for 33e8f57
1 file changed
my-submissions/e1295 golang.go
@@ -0,0 +1,12 @@
1
+
2
+import "strconv"
3
+func findNumbers(nums []int) int {
4
+ output := 0
5
+ for _, n := range nums {
6
+ n_str := strconv.Itoa(n)
7
+ if len(n_str) % 2 == 0 {
8
+ output++
9
+ }
10
11
+ return output
12
+}
0 commit comments