0777. Swap Adjacent in LR String
https://leetcode.com/problems/swap-adjacent-in-lr-string
Description
In a string composed of 'L'
, 'R'
, and 'X'
characters, like "RXXLRXRXL"
, a move consists of either replacing one occurrence of "XL"
with "LX"
, or replacing one occurrence of "RX"
with "XR"
. Given the starting string start
and the ending string end
, return True
if and only if there exists a sequence of moves to transform one string to the other.
Example 1:
Example 2:
Example 3:
Example 4:
Example 5:
Constraints:
1 <= start.length <= 104
start.length == end.length
Both
start
andend
will only consist of characters in'L'
,'R'
, and'X'
.
ac
Last updated