这道题主义的就是,要利用数组自带的sort函数。
此外,注意,利用hash来判断是否出现了。
public static ArrayListsortStrings(String[] str, int n) { // write code here ArrayList res = new ArrayList(); //sort Arrays.sort(str); HashSet hash = new HashSet(); for(int i = 0; i
本文共 421 字,大约阅读时间需要 1 分钟。
这道题主义的就是,要利用数组自带的sort函数。
此外,注意,利用hash来判断是否出现了。
public static ArrayListsortStrings(String[] str, int n) { // write code here ArrayList res = new ArrayList(); //sort Arrays.sort(str); HashSet hash = new HashSet(); for(int i = 0; i
转载于:https://www.cnblogs.com/yueyebigdata/p/5100251.html