1295. Find Numbers with Even Number of Digits
https://leetcode.com/problems/find-numbers-with-even-number-of-digits
Description
Given an array 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
ac
Last updated