Create a function that returns true if the given circles are intersecting, otherwise return false. The circles are given as two arrays 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