Create a function that returns True if the given circles are intersecting, otherwise return False. The circles are given as two lists containing the values in the following order:
is_circle_collision([10, 0, 0], [10, 10, 10]) ➞ True
is_circle_collision([1, 0, 0], [1, 10, 10]) ➞ False