136. single-number

一笑奈何 提交于 2019-12-28 13:04:16

description:

Given a non-empty array of integers, every element appears twice except for one. 
Find that single one.

Note:
Your algorithm should have a linear runtime complexity. Could you implement it 
without using extra memory?

Example 1:
Input: [2,2,1]
Output: 1

Example 2:
Input: [4,1,2,1,2]
Output: 4

code:

func singleNumber(nums []int) int {
    nRet := 0
    for _, v := range nums {
        nRet ^= v
    }
    return nRet
}

result:
在这里插入图片描述
personal opinion:

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!