MCPcopy Create free account
hub / github.com/careercup/ctci / main

Method main

java/Chapter 9/Question9_5/Question.java:35–41  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

33 }
34
35 public static void main(String[] args) {
36 ArrayList<String> list = getPerms("abcde");
37 System.out.println("There are " + list.size() + " permutations.");
38 for (String s : list) {
39 System.out.println(s);
40 }
41 }
42
43}

Callers

nothing calls this directly

Calls 2

getPermsMethod · 0.95
sizeMethod · 0.45

Tested by

no test coverage detected