摘要:
https://leetcode-cn.com/problems/roman-to-integer/ 能比较快想到的一个方法: public class RomanToInt { public static int romanToInt(String s) { int ret = 0; Map<St 阅读全文
摘要:
输入1: AAABBC 输出1: A3B2C 输入2:DDBCAA 输出2:A2B1C1D2 解析:首先想到的是用一个hashmap来存储每个字母的统计,然后再对hashmap的关键字进行排序 按照字母顺序输出打印,实现代码如下: public static String charCount(Str 阅读全文