-
Notifications
You must be signed in to change notification settings - Fork 622
/
Copy pathis_ascending_ll.py
48 lines (35 loc) · 1.05 KB
/
is_ascending_ll.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
'''
Ascending Linked List
Determine whether the sequence of items is ascending so that its each element is strictly larger
than (and not merely equal to) the element that precedes it. Return True if that is the case, and
return False otherwise.
Input: -5 -> 10 -> 99 -> 123456
Output: True
=========================================
Iterate node by node and compare the current value with the next value.
If the next node is smaller or equal return false.
Time Complexity: O(N)
Space Complexity: O(1)
'''
############
# Solution #
############
# import ListNode class from ll_helpers.py
from ll_helpers import ListNode
def is_ascending_ll(ll):
while ll.next != None:
if ll.val >= ll.next.val:
return False
ll = ll.next
return True
###########
# Testing #
###########
# import build_ll method from ll_helpers.py
from ll_helpers import build_ll
# Test 1
# Correct result => True
print(is_ascending_ll(build_ll([-5, 10, 99, 123456])))
# Test 2
# Correct result => False
print(is_ascending_ll(build_ll([2, 3, 3, 4, 5])))