???leetcode ????????? ??????????????? ????????????
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了???leetcode ????????? ??????????????? ????????????相关的知识,希望对你有一定的参考价值。
???????????????????????? return style ?????? pre ?????? ?????? ?????? ??????
?????????????????? 0, 1, 2, ..., n
??? n ???????????????????????? 0 .. n ??????????????????????????????????????????
?????? 1:
??????: [3,0,1] ??????: 2
?????? 2:
??????: [9,6,4,2,3,5,7,0,1] ??????: 8
??????:
???????????????????????????????????????????????????????????????????????????????????????????
class Solution: def missingNumber(self, nums): """ :type nums: List[int] :rtype: int ???????????????n???????????? Sn = (a1 + an)*n / 2 ??????a1 = 1?????????an = n?????????d = 1????????????n """ n = len(nums) return int(n * (n + 1) / 2 - sum(nums))
以上是关于???leetcode ????????? ??????????????? ????????????的主要内容,如果未能解决你的问题,请参考以下文章