摘要:
stringbuilder加入到首位的话用insert 阅读全文
posted @ 2018-10-27 10:52
jasoncool1
阅读(145)
评论(0)
推荐(0)
摘要:
1 class Solution { 2 public String customSortString(String S, String T) { 3 if(S.length() == 0 || T.length() == 0) return T; 4 int[] count = new int[26]; 5 for(int i ... 阅读全文
posted @ 2018-10-27 06:56
jasoncool1
阅读(96)
评论(0)
推荐(0)