人生苦短,但求成长
人生苦短,但求成长
全部文章
题解
归档
标签
去牛客网
登录
/
注册
人生苦短,但求成长的博客
全部文章
/ 题解
(共150篇)
题解 | #计算字符串的距离#学习大神的动态规划思想
while True: try: str1, str2 = input(), input() ...
Python3
2022-02-08
3
1128
题解 | #输出单向链表中倒数第k个结点#注意倒数第0个还是输出0
while True: try: n = int(input()) num_list = [...
Python3
2022-01-26
0
309
题解 | #四则运算#人生苦短,我用python yyds
while True: try: str_input = input() str_input = str_input.replace('{', '(') &nb...
Python3
2022-01-26
0
343
题解 | #从单向链表中删除指定值的节点#第一次接触链表,可以可以
while True: try: input_list = [int(i) for i in input().split()] &nb...
Python3
2022-01-26
0
306
题解 | #截取字符串#人生苦短,我用Python啊
while True: try: str_input = input() k = int(input()) ...
Python3
2022-01-26
15
1182
题解 | #名字的漂亮度#把名字中的字母出现次数按从大到小排序,依次对应漂亮度26,25,24...
while True: try: n = int(input()) for i in range(n): ...
Python3
2022-01-26
58
2203
题解 | #查找兄弟单词#这题还好
while True: try: str_input = input() each_list = str_input.split()[1:-2] ...
Python3
2022-01-26
0
297
题解 | #密码截取#执行速度超过90%,哈哈
while True: try: str_input = input() # 中心为一个元素时 sing...
Python3
2022-01-26
5
1932
题解 | #Sudoku#学习大佬后自己敲一遍
def isRightNum(all_list, x, y): for i in range(9): if all_list[x][i] == all_list[x][y] and i != y: &n...
Python3
2022-01-26
1
519
题解 | #Sudoku#学习大佬后自己敲
def isRightNum(all_list, x, y): for i in range(9): if all_list[x][i] == all_list[x][y] and i != y: return False if all_list[i][y] == all_list[x][y] an...
Python3
2022-01-26
2
868
首页
上一页
6
7
8
9
10
11
12
13
14
15
下一页
末页