https://leetcode.com/problems/custom-sort-string/description/ 난이도: Medium * DS&A 01 Mar 내 풀이 class Solution { public String customSortString(String order, String s) { int pointer = 0; char[] ca = s.toCharArray(); for(char c: order.toCharArray()){ for(int i=pointer; i Bucket Sort 사용 (이게 정석인듯) class Solution { public String customSortString(String order, String s) { int[] ca = new int[26]; // s에 나..