07 2023 档案
摘要:# 链表 ## 1、 ```cpp #include using namespace std; #define ll long long #define N 100010 struct node{ int val; struct node *next; } ; struct node *head =
阅读全文
摘要:校外实训 $1$ 全部更新到 $4.x$ 题目。 # 第一部分 ## A+B ```py a, b = map(int, input().strip().split()) print(a + b) ``` ## 熄灯问题 ```cpp #include using namespace std; in
阅读全文