1195基础解法(Python) 摘要:解题思路:主要还是找关系注意事项:去掉'\n'换行符更容易表示关系参考代码:import sysfor line in sys.stdin: line = line.strip(…… 题解列表 2022年11月18日 0 点赞 0 评论 158 浏览 评分:9.9
1195: 去掉双斜杠注释 摘要:解题思路:注意事项:参考代码:while True: try: n=input() if n[0]=='/' and n[1]=='…… 题解列表 2022年02月19日 0 点赞 0 评论 163 浏览 评分:0.0
去掉双斜杠注释-题解(Python代码) 摘要:方法好像有点傻,现在是凌晨0:44,明早8点还有网课。所以就不思考更加简洁的方法了 ```python while True: string = input() if stri…… 题解列表 2020年03月24日 0 点赞 0 评论 571 浏览 评分:6.0