python学习之——single number

Given an array of integers, every element appears twice except for one. Find that single one.

思路:队列排序,两两个对比,找出不相同的一个

原文地址:https://www.cnblogs.com/cloverclt/p/4757610.html