Given a non-empty array of integers, every element appears twice except for one. Find that single one.java
Note:git
Your algorithm should have a linear runtime complexity. Could you implement it without using extra memory?github
Example 1:app
Input: [2,2,1] Output: 1
Example 2:code
Input: [4,1,2,1,2] Output: 4
最开始咱们使用map:blog
还有就是能够排序后比较,排序可能就不是线性的啦排序
而后看看大神是怎么写的:ip
源码:https://github.com/woshiyexinjie/leetcode-xin/tree/master/src/main/java/com/helloxin/leetcode/algorithmselement
leetcode:https://leetcode.com/problems/single-number/description/leetcode
有什么讨论的内容,能够加我公众号: