Beispiel #1
0
 def test1(self):
     s = Solution()
     n = 3
     res = s.generateMatrix(n)
     print res
Beispiel #2
0
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from solution import Solution

n = 3
sol = Solution()
res = sol.generateMatrix(n)
print(res)