当前位置: 代码迷 >> 综合 >> 【Java - L - 1295】e - 统计位数为偶数的数字
  详细解决方案

【Java - L - 1295】e - 统计位数为偶数的数字

热度:77   发布时间:2023-12-26 07:57:49.0

题目描述

给你一个整数数组 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;}
}
  相关解决方案