题解列表

筛选

密码截获 (Python代码)

摘要:```python # 判断一个字符串是否为回文 def func(str1): length = len(str1) str2 = "" for i in rang……

增添战力-题解(C++代码)

摘要:# 增添战力 ## 题目链接 [https://www.dotcpp.com/oj/problem2109.html](https://www.dotcpp.com/oj/problem2……

排列-题解(Python代码)

摘要:```python import itertools count = int(input()) while count > 0: ipt = input() # 每个数字之间有一个……