136. Single Number - Easy 前往題目 思路 XOR最後就會剩下單獨的元素 Code class Solution { public int singleNumber(int[] nums) { int res = 0; for (int num : nums) { res ^= num; } return res; } } 2024/07/25 寫出來了,還記得要用XOR,因為兩個相等數字XOR等於0 Leetcode > Easy #Leetcode #心得 #Array #Bit Manipulation 136. Single Number - Easy https://f88083.github.io/2024/01/05/136-Single-Number-Easy/ 作者 Simon Lai 發布於 2024年1月5日 許可協議 3. Longest Substring Without Repeating Characters - Medium 上一篇 215. Kth Largest Element in an Array - Medium 下一篇 Please enable JavaScript to view the comments