예제 #1
0
 def test1(self):
     A = [1, 2, 3, 4, 5, 6]
     res = longest_ascending(A)
     print res
예제 #2
0
 def test2(self):
     A = [1, 9, 3, 7, 5, 6, 7, 2, 9, 4, 10]
     res = longest_ascending(A)
     print res