Answers for "check if 2 coordinates intersect python"

1

python check if two sets intersect

a = [1, 2, 3]
b = [3, 4, 5]

bool(set(a) & set(b))
Posted by: Guest on October-06-2020

Code answers related to "check if 2 coordinates intersect python"

Python Answers by Framework

Browse Popular Code Answers by Language