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

Method main

java/Chapter 11/Question11_2/Question.java:8–13  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

6
7public class Question {
8 public static void main(String[] args) {
9 String[] array = {"apple", "banana", "carrot", "ele", "duck", "papel", "tarroc", "cudk", "eel", "lee"};
10 System.out.println(AssortedMethods.stringArrayToString(array));
11 Arrays.sort(array, new AnagramComparator());
12 System.out.println(AssortedMethods.stringArrayToString(array));
13 }
14}

Callers

nothing calls this directly

Calls 2

stringArrayToStringMethod · 0.95
sortMethod · 0.45

Tested by

no test coverage detected