Given an array of integers, every element appears three times except for one, which appears exactly once. Find that single one. 题意: 在一个整型数组里,只有一个数字出现一次,其他数字都出现了3次,求这个只出现一次的数字(single number). 这真是非常非常有意思的一道题目.如果直接统计各数字出现的次数当然也能达到目的,不过空间复杂度为O(N).能否用O(1)…