Skip to content

Commit f23e067

Browse files
committed
Time: 75 ms (5.05%), Space: 13.9 MB (83.75%) - LeetHub
1 parent 9cd269e commit f23e067

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class Solution {
2+
func findNumbers(_ nums: [Int]) -> Int {
3+
nums.filter { String($0).count % 2 == 0 }.count
4+
}
5+
}

0 commit comments

Comments
 (0)