예제 #1
0
파일: test.py 프로젝트: teruhirok/python
 def test3(self):
     expect = [
                 [1,1,2],
                 [1,2,1],
                 [2,1,1]
              ]
     actual = Solution.permuteUnique("", [1,1,2])
     self.assertEqual(expect, actual)