任务概览
| 任务类型 | 任务内容 |
|---|---|
| 闯关任务 | 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
二、Vscode连接InternStudio debug笔记
1. 链接到远程主机

2. 新建debug文件

3. 启动调试




三、调用书生浦语API






229

被折叠的 条评论
为什么被折叠?



