不错就是对
不错就是对
全部文章
分类
题解(256)
归档
标签
去牛客网
登录
/
注册
不错就是对的博客
Work hard and be nice to people.
全部文章
(共2篇)
题解 | #牛牛的朋友#
NP33 牛牛的朋友 思路: step1:首先创建并打印原列表; step2:定义replace函数,将friends[index] = index; step3:遍历列表,每次遍历,均调用一下replace函数; step4:打印更新后的列表; 代码如下: friends_list = ['Niu...
Python2
2022-06-12
0
439
题解 | #函数求差#
NP32 函数求差 思路: 定义函数,然后传参调用即可; 代码如下: def cal(x,y): return x-y x = input() y = input() print(cal(x,y)) print(cal(y,x))
Python2
2022-06-12
0
549