Linear Chess
Given two strings, start and target. Is it possible to reach target from start given the conditions.
- String can contain "L", "R" or "_".
- L denotes a left pawn which can move only in left direction, R denotes a right pawn which can move only in right direction.
- Pawns can't capture or jump over other pawns.
Example :
start = "__LL_"
target = "L_L__"
output - True