人生苦短,但求成长
人生苦短,但求成长
全部文章
分类
题解(166)
归档
标签
去牛客网
登录
/
注册
人生苦短,但求成长的博客
全部文章
(共64篇)
题解 | #完全数计算#好像有点慢
while True: try: n = int(input()) count = 0 for i in...
Python3
2022-02-08
0
365
题解 | #挑7#人生苦短,我用python
while True: try: n = int(input()) seven_count = 0 fo...
Python3
2022-02-08
0
268
题解 | #表达式求值#简单粗暴
while True: try: str_input = input() print(eva...
Python3
2022-02-08
2
440
题解 | #杨辉三角的变形#有误区,要找规律
while True: try: n = int(input()) # 误区!!!把三角形求出来再去找偶数在数据量大到时候会超时 ...
Python3
2022-02-08
11
1350
题解 | #计算字符串的距离#学习大神的动态规划思想
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
首页
上一页
1
2
3
4
5
6
7
下一页
末页