LeetCode Single Number III

来源:互联网 发布:淘宝店铺怎么重新开 编辑:程序博客网 时间:2024/06/01 09:06

Given an array of numbers nums, in which exactly two elements appear only once and all the other elements appear exactly twice. Find the two elements that appear only once.

For example:

Given nums = [1, 2, 1, 3, 2, 5], return [3, 5].

Note:
The order of the result is not important. So in the above example, [5, 3] is also correct.
Your algorithm should run in linear runtime complexity. Could you implement it using only constant space complexity?

func singleNumber(nums []int) []int {    diff := 0    for _, num := range nums {        diff = diff ^ num    }    diff = -diff & diff    result := make([]int, 2)    for _, num := range nums {        if diff & num == 0 {            result[0] = result[0] ^ num        } else {            result[1] = result[1] ^ num        }    }    return result}
0 0
原创粉丝点击