Self Crossing
Explore how to determine if a path revisits any previously visited position by analyzing a sequence of movements on an X-Y plane. Learn to apply geometric and mathematical reasoning to detect self crossing in paths, a common coding interview problem, and implement an efficient solution.
We'll cover the following...
We'll cover the following...
Statement
You are given an array of integers, distance, where each element represents the length of a move you will make on an X-Y plane. You start at ...