码迷,mamicode.com
首页 > 编程语言 > 详细

python海明距离 - 5IVI4I_I_60Y的日志 - 网易博客

时间:2014-06-11 22:02:15      阅读:316      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   http   tar   com   

python海明距离 - 5IVI4I_I_60Y的日志 - 网易博客

python海明距离  

2009-10-01 09:50:41|  分类: Python |  标签: |举报 |字号 订阅

 
 
def hammingDist(s1, s2):
    assert len(s1) == len(s2)
    return sum([ch1 != ch2 for ch1, ch2 in zip(s1, s2)])

python海明距离 - 5IVI4I_I_60Y的日志 - 网易博客,布布扣,bubuko.com

python海明距离 - 5IVI4I_I_60Y的日志 - 网易博客

标签:style   class   blog   http   tar   com   

原文地址:http://www.cnblogs.com/lexus/p/3772389.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!