牛客46722685号
牛客46722685号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客46722685号的博客
全部文章
/ 题解
(共2篇)
字符个数统计python3
def countttttt(): n=list(input()) d={} for i in n: if ord(i)<0 or ord(i)>127: continue else: ...
2020-11-10
7
1137
提取不重复整数python3
n=int(input()) d={} while n>0: num=n%10 n//=10 if d.get(num) is None: d[num]=1 print(num,end='')
2020-11-10
0
479