Exemplo n.º 1
0
 @Test
 public void test2() {
   assertListsEqualUnordered(Lists.newArrayList(), solution.letterCombinations("1111100000"));
 }
Exemplo n.º 2
0
 @Test
 public void test1() {
   assertListsEqualUnordered(
       Lists.newArrayList("ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"),
       solution.letterCombinations("23"));
 }