摘要: A. Broken Keyboard Description 给出一串小写字母字符序列,连续出现两次的字母为坏掉的,按字典序输出所有没有坏掉的字母。 Solution 模拟暴力删除字母,注意相同字母的去重。 1 #include <algorithm> 2 #include <cctype> 3 # 阅读全文
posted @ 2019-10-25 17:23 mool 阅读(302) 评论(0) 推荐(0) 编辑