1 Star 0 Fork 0

ZENGWatermelon/LeetCode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
136.只出现一次的数字.py 764 Bytes
一键复制 编辑 原始数据 按行查看 历史
sunzhaoc 提交于 2020-12-02 22:40 . master
'''
Description:
Version: 1.0
Author: Vicro
Date: 2020-12-02 20:44:39
LastEditTime: 2020-12-02 21:11:40
FilePath: \Leetcode\136.只出现一次的数字.py
'''
#
# @lc app=leetcode.cn id=136 lang=python3
#
# [136] 只出现一次的数字
#
import collections
# @lc code=start
"""
Accept 85.60 80.19
异或运算
https://leetcode-cn.com/problems/single-number/solution/zhi-chu-xian-yi-ci-de-shu-zi-by-leetcode-solution/
"""
class Solution:
def singleNumber(self, nums):
return reduce(lambda x, y: x ^ y, nums)
"""
Accept 52 13
哈希
"""
# class Solution:
# def singleNumber(self, nums):
# return collections.Counter(nums).most_common(len(nums)) [-1][0]
sol = Solution()
A = sol.singleNumber([1,2,1,2,2,4])
print(A)
# @lc code=end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/watermelonTT/LeetCode.git
git@gitee.com:watermelonTT/LeetCode.git
watermelonTT
LeetCode
LeetCode
master

搜索帮助