标签:off add ret 剑指offer pre amp div 加法 col
def add(n,m): while m: summ=n^m carry=(n&m)<<1 m=carry n=summ return n print(add(3,4))
剑指offer python版 不用加减乘除做加法
原文地址:https://www.cnblogs.com/xzm123/p/9871390.html