题目描述
给你一个整数数组 nums,请你返回其中位数为 偶数 的数字的个数。
练习地址
实现
class Solution {
public int findNumbers(int[] nums) {
if (nums == null || nums.length == 0) return 0;int count = 0;for (int i = 0; i < nums.length; i++) {
String s = String.valueOf(nums[i]);if ((s.length() & 1) == 0) {
count++;}}return count;}
}