![]() |
VOOZH | about |
Given coordinates of a source point (x1, y1) determine if it is possible to reach the destination point (x2, y2). From any point (x, y) there only two types of valid movements:
(x, x + y) and (x + y, y). Return a boolean true if it is possible else return false.
Note: All coordinates are positive.
Asked in: Expedia, Telstra
Examples:
Input : (x1, y1) = (2, 10) (x2, y2) = (26, 12) Output : True (2, 10)->(2, 12)->(14, 12)->(26, 12) is a valid path. Input : (x1, y1) = (20, 10) (x2, y2) = (6, 12) Output : False No such path is possible because x1 > x2 and coordinates are positive
The problem can be solved using simple recursion. Base case would be to check if current x or y coordinate is greater than that of destination, in which case we return false. If it is not the destination point yet we make two calls for both valid movements from that point.
If any of them yields a path we return true else return false.
Output:
True