记录点滴

Home Archives About
2018-11-26
leetcode

Hamming Distance

Hamming Distance

XOR Version - 36ms

1
2
3
4
5
6
7
8
class Solution:
def hammingDistance(self, x, y):
"""
:type x: int
:type y: int
:rtype: int
"""
return bin(x ^ y).count('1')

test code

1
2
In [100]: s = Solution(); t = s.hammingDistance(2, 67); print(t)
2

汉明距离

leet code

Share
  • leetcode
  • python3
Newer
Merge Two Binary Trees
Older
Longest Substring with At Least K Repeating Characters

分类

  • bigflow
  • cpp
  • django
  • git
  • json
  • leetcode
  • linux
  • mongodb
  • mysql
  • note
  • opencv
  • python
  • redis

标签

  • 2d-array
  • bigflow
  • binary tree
  • hadoop
  • lambda
  • leetcode
  • python
  • python3

标签云

2d-array bigflow binary tree hadoop lambda leetcode python python3

归档

  • 一月 2020
  • 十二月 2018
  • 十一月 2018
  • 十月 2018
  • 九月 2018
  • 八月 2018
  • 三月 2018
  • 二月 2018
  • 一月 2018
  • 十一月 2017
  • 十月 2017
  • 九月 2017
  • 四月 2017
  • 二月 2017
  • 十一月 2012
  • 十月 2012

最新文章

  • Python requests 超时 异常捕捉
  • mysql distinct count group by
  • (no title)
  • Subarray Sum Equals K
  • Path Sum III
© 2020 Krevy Li
Powered by Hexo
Home Archives About