Ai
1 Star 0 Fork 0

徐长贺/Leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
_1295.java 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
Fisher Coder 提交于 2019-12-22 22:57 +08:00 . add 1295
package com.fishercoder.solutions;
import java.util.Arrays;
/**
* 1295. Find Numbers with Even Number of Digits
*
* Given an array nums of integers, return how many of them contain an even number of digits.
*
* Example 1:
* Input: 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 contain an even number of digits.
*
* Example 2:
* Input: nums = [555,901,482,1771]
* Output: 1
* Explanation:
* Only 1771 contains an even number of digits.
*
* Constraints:
* 1 <= nums.length <= 500
* 1 <= nums[i] <= 10^5
* */
public class _1295 {
public static class Solution1 {
public int findNumbers(int[] nums) {
int count = 0;
for (int num : nums) {
if (String.valueOf(num).length() % 2 == 0) {
count++;
}
}
return count;
}
}
public static class Solution2 {
public int findNumbers(int[] nums) {
return (int) Arrays.stream(nums).filter(num -> String.valueOf(num).length() % 2 == 0).count();
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/isulong/Leetcode.git
git@gitee.com:isulong/Leetcode.git
isulong
Leetcode
Leetcode
master

搜索帮助