密码截获 (Python代码) 摘要:```python # 判断一个字符串是否为回文 def func(str1): length = len(str1) str2 = "" for i in rang…… 题解列表 2020年03月24日 0 点赞 0 评论 778 浏览 评分:9.9
大家可以参考一下 摘要:解题思路:我自己都不知道为什么加个while true就能通过,不加不通过,两个注意点一个字符长度出1,没有回文就出0,利用find函数不断遍历找相同字符判断回文注意事项:参考代码:while Tru…… 题解列表 2021年04月23日 0 点赞 0 评论 454 浏览 评分:9.9
非常暴力的解法 摘要:```python def f(s):#判断是否对称 if s==s[::-1]: return True else: return Fals…… 题解列表 2022年04月07日 0 点赞 0 评论 245 浏览 评分:0.0
密码截获——python 摘要:解题思路:注意事项:参考代码:while True: try: L = input() L2 = [] if len(L) == 1: …… 题解列表 2023年04月04日 0 点赞 0 评论 74 浏览 评分:0.0
编写题解 1209: 密码截获 摘要:解题思路:注意事项:参考代码:while True: try: st=input() ts=st[::-1] s=[] &n 题解列表 2022年04月08日 0 点赞 0 评论 152 浏览 评分:0.0