1144一行解(Python) 摘要:解题思路:掌握lambda写法注意事项:注意结构的顺序,不建议解题这样书写参考代码:print((' '.join(n for n in list(map(lambda x : &#…… 题解列表 2022年12月24日 0 点赞 0 评论 143 浏览 评分:9.0
本来以为很难,后来发现也就是循环加判断 摘要:解题思路:注意事项:参考代码:for i in range(0,10): p=i**2 if p%10==i: print(i,end=' ')for i …… 题解列表 2022年06月01日 0 点赞 1 评论 154 浏览 评分:9.9
编写题解 1144: C语言训练-自守数问题(Python 超简) 摘要:通过endswith这个函数来判断平方后的数的末尾是否含有自己for i in range(200001): if str(pow(i, 2)).endswith(str(i)): …… 题解列表 2022年04月21日 0 点赞 0 评论 464 浏览 评分:9.9
编写题解 1144: C语言训练-自守数问题,最简单判断:字符字尾连接判断函数(endswith()) 摘要:ls = []for n in range(200000): if str(n**2).endswith(str(n)): ls.append(n)for i in range(l…… 题解列表 2021年12月18日 0 点赞 0 评论 199 浏览 评分:0.0
python解决自守数问题 摘要:注意事项:注意格式参考代码:import math def Check(n): t = n count = 0 # 计算n有多少位 while t !…… 题解列表 2021年03月13日 0 点赞 0 评论 482 浏览 评分:0.0
C语言训练-自守数问题-题解(Python代码)没有python的题解,那就我来吧! 摘要:**代码如下:** x="" n=0 u="" for i in range(200001): n=i**2 x=str…… 题解列表 2019年12月23日 0 点赞 0 评论 1133 浏览 评分:9.9