MCPcopy Index your code
hub / github.com/careercup/ctci / sortChars

Method sortChars

java/Chapter 11/Question11_2/QuestionB.java:10–14  ·  view source on GitHub ↗
(String s)

Source from the content-addressed store, hash-verified

8
9public class QuestionB {
10 public static String sortChars(String s) {
11 char[] content = s.toCharArray();
12 Arrays.sort(content);
13 return new String(content);
14 }
15
16 public static void sort(String[] array) {
17 Hashtable<String, LinkedList<String>> hash = new Hashtable<String, LinkedList<String>>();

Callers 1

sortMethod · 0.95

Calls 1

sortMethod · 0.45

Tested by

no test coverage detected