题解列表
编写题解 1021: [编程入门]迭代法求平方根
摘要:解题思路:注意事项:参考代码:a = eval(input())b = ac = (b + a/b)/2while c - b or b - c>= 0.00001: b = c c = ……
对矩阵二维数组还是不是很熟悉啊
摘要:解题思路:注意事项:折腾了这么久,不懈题解对不起自己看时间一道题也高了快一个小时了参考代码:##while True:## n=int(input())## lh=[]## for ……
小南解题-P1003-6行结束
摘要:'''zgn94615:09 2022/5/27'''a = list(input().strip().split())b = list(input()……
小南解题- c++_ch02_02--4行解决
摘要:'''14:35 2022/5/27zgn946'''a,b,c=map(str,input().split())if c=='/': ……
小南解题-删除数组中的0元素
摘要:'''14:22 2022/5/27zgn946'''a=input()b=list(map(int,input().split()))for i in……
除法python是//???????????为什么,这个不是整除吗
摘要:解题思路:注意事项:看了题解,除法python是//???????????为什么,这个不是整除吗参考代码:s=list(input().split())if s[-1]=='+': ……
挺好的但是时间过得很快要注意点就是了
摘要:解题思路:注意事项:参考了下题解,直接用复制的方法,不再一个一个去删除和添加简单多了参考代码:s=list(map(int,input().split()))##print(s)s0=list.cop……
加油速度速度还是有点慢
摘要:解题思路:注意事项:没有用删除的方法,逆向思维参考代码:s=input()l2=[]for i in s: if (i>='A' and i<='Z')or( i……