Coding test/LeetCode
![[LeetCode] Find Numbers with Even Number of Digits](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FxjYDb%2FbtrCDKzId4L%2FAAAAAAAAAAAAAAAAAAAAAEJbVDWQAGCgBnqcddKy27qYn6jrXUwKldZvf-xgWGAb%2Fimg.jpg%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3DKhHHPeVq07cxMxagb%252F01NNa%252BPmo%253D)
[LeetCode] 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 = [12,345,2,6,7896] Output: 2 Explanation: 12 contains 2 digits (even number of digits). 345 contains 3 digits (odd number of digits). 2 contains 1 digit (odd number of digits). 6 contains 1 digit (odd number of digits). 7896 contains 4 digits (even number of digits). Therefore only 12 and 7896 c..