How can I compare the numbers of multiple lists to test if there is no overlap in the number ranges across all lists.
a = [1, 8]
b = [9, 13]
c = [14, 20]
I want to know if the numbers in the lists overlap with each other.
How can I compare the numbers of multiple lists to test if there is no overlap in the number ranges across all lists.
a = [1, 8]
b = [9, 13]
c = [14, 20]
I want to know if the numbers in the lists overlap with each other.