iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 15
1
自我挑戰組

今年我想陪著 30 天系列 第 15

今年我想陪著 30 天之 15

  • 分享至 

  • xImage
  •  

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.

var findNumbers = function(nums) {
  let count = 0;  
  nums.forEach((i, idx) => {
    if(i.length % 2 == 0)
        count += Array.from(new Set(String(i).split(''))).length % 2 == 0 ? 1 : 0;
  });
  return count;
};

上一篇
今年我想陪著 30 天之 14
下一篇
今年我想陪著 30 天之 16
系列文
今年我想陪著 30 天30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言