Leetcode 383. Ransom Note

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

Ransom Note

2. Solution

  • Version 1
1
2
3
4
5
6
7
8
9
10
11
class Solution:
def canConstruct(self, ransomNote: str, magazine: str) -> bool:
ransom = Counter(ransomNote)
mag = Counter(magazine)
for k, _ in ransom.items():
if k in mag:
if ransom[k] > mag[k]:
return False
else:
return False
return True

Reference

  1. https://leetcode.com/problems/ransom-note/
如果有收获,可以请我喝杯咖啡!