https://leetcode.com/problems/product-of-array-except-self/description/
给出一个有n(n>1)个整数的数组nums,返回一个output数组,output[i]等于除了nums[i]外其余所有元素的乘积。不使用除法且在O(n)时间内完成。 (来回遍历,保存temp并赋值)
https://leetcode.com/problems/single-number/description/
最快找出在每个元素出现两次的数组中只出现一次的内鬼。 (使用^按位异或)
https://leetcode.com/problems/find-the-difference/description/
两个String,一个比另一个多一位,找出这个元素。 (使用^按位异或)
https://leetcode.com/problems/sum-of-two-integers/description/
使用与非门实现加减法