题解列表

筛选

python 知识点:字符统计 简单易懂

摘要:解题思路:学习python第一天注意事项: python的在线编译器用不了参考代码:# 字符串的统计 str.count('字符串') 输出为int类型的个数str=input()a0……

满分dfs(python)

摘要:解题思路:注意事项:参考代码:import functools n,m = map(int, input().split()) @functools.lru_cache(None) def df……

很简单的python代码

摘要:解题思路:注意事项:参考代码:for i in range(2,1000):    total_sum = 0    array1 = list(str(i))    for digit in arr……