Re: [閒聊] 每日leetcode

作者: DJYOMIYAHINA (通通打死)   2024-11-07 21:45:45
每個bit去算 candidates裡面有幾個數字的這個bit是1
最多的那個就是答案
def largestCombination(self, candidates: List[int]) -> int:
cnt = defaultdict(int)
ans = 0
for sft in range(31):
cur_mask = (1<<sft)
for num in candidates:
if (num&cur_mask) > 0:
cnt[sft] += 1
ans = max(ans, cnt[sft])
return ans
作者: DJYOMIYAHINA (通通打死)   2024-11-07 21:46:00
好像根本不用開map 對ㄚ==
作者: RinNoKareshi (立石凜的男友)   2024-11-07 21:47:00
大家都在看邦TV 就你還在卷= =
作者: dont   2024-11-07 21:49:00
大師
作者: Furina (芙寧娜)   2024-11-07 21:49:00
大師
作者: oin1104 (是oin的說)   2024-11-07 21:50:00
大師
作者: Che31128 (justjoke)   2024-11-07 21:52:00
大師

Links booklink

Contact Us: admin [ a t ] ucptt.com