牛客695383095号
牛客695383095号
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
牛客695383095号的博客
全部文章
(共2篇)
题解 | #字符统计#
while True: try: input_string = input() sorted_list = sorted(input_string) dict, ans = {}, '' for item in sorted_...
Python3
2021-09-21
2
809
题解 | #坐标移动#
input_list = input().split(';') initial = [0,0] for item in input_list: if not 2 <= len(item) <= 3: continue try: dire...
Python3
2021-09-21
146
7855