任务概览
任务类型 | 任务内容 |
---|---|
闯关任务 | Leetcode 383(笔记中提交代码与leetcode提交通过截图) |
闯关任务 | Vscode连接InternStudio debug笔记 |
可选任务 | pip安装到指定目录 |
一、Leetcode 383(笔记中提交代码与leetcode提交通过截图)
class Solution:
def canConstruct(self, ransomNote: str, magazine: str) -> bool:
b = list(magazine)
try:
for i in ransomNote:
b.remove(i)
return True
except:
return False