002 Find Numbers with Even Number of Digits
Given an array nums
of integers, return how many of them contain an even number of digits.
nums
of integers, return how many of them contain an even number of digits.Example 1:
Example 2:
Constraints:
1 <= nums.length <= 500
1 <= nums[i] <= 10^5
Solution
Code
Last updated