关于模的问题
写代码的时候遇到模的问题
class Solution:
def countCompleteDayPairs(self, hours: List[int]) -> int:
ans = 0
t = [0 for _ in range(24)]
for h in hours:
u = (24-h%24)%24
ans += t[u]
t[h%24] += 1
return ans
如果写成 u = (24-h%24) 是不对的,没有考虑h等于0的情况
原文地址:https://blog.csdn.net/wniuniu_/article/details/140591529
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!