剑指offer面试题【56】----数组中数字出现的次数

题目描述

一个整型数组里除了两个数字之外,其他的数字都出现了两次。请写程序找出这两个只出现一次的数字。

代码实现

# -*- coding:utf-8 -*-
class Solution:
    # 返回[a,b] 其中ab是出现一次的两个数字
    def FindNumsAppearOnce(self, array):
        # write code here
        temp=[]
        for a in array:
            if a in temp:
                temp.remove(a)
            else:
                temp.append(a)
        return temp

 

你可能感兴趣的:(python基础,剑指offer)