コード例 #1
0
ファイル: Chapter1Test.java プロジェクト: jpalomo/CCI
 @Test
 public void isPermuationWithHash1_Q_1_1() {
   assertTrue(Chapter1.isPermuationWithHash1_Q_1_1("test", "test"));
 }
コード例 #2
0
ファイル: Chapter1Test.java プロジェクト: jpalomo/CCI
 @Test
 public void isPermuationWithHashDiffString1_Q_1_1() {
   assertFalse(Chapter1.isPermuationWithHash1_Q_1_1("test", "test1"));
 }