摘要: `260. Single Number III Medium 2732 152 Add to List Share Given an integer array nums, in which exactly two elements appear only once and all the othe 阅读全文
posted @ 2021-10-09 17:25 茫茫碧落 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 一堆数字, 有一个数字只出现一次, 其他数字都出现3次, 找到这个数字, 要求在线性时间和常数空间复杂度解决这个问题. 前置问题是136, 这道题我的想法是, 首先还是要通过位运算来解决这个问题, 我要构建一个计数器一样的东西.当这个位上的数字出现一次, 以三为模来进行计算. 这样就可以解决. 为此 阅读全文
posted @ 2021-10-09 16:59 茫茫碧落 阅读(40) 评论(0) 推荐(0) 编辑