Description:
Given an array of integers, every element appears three times except for one. Find that single one.
只有一个出现一次的数字,其他的都出现了3次,找出出现一次的那个数字。
public class Solution { public int singleNumber(int[] nums) { Mapmap = new HashMap<>(); int len = nums.length; for(int i=0; i