2833. Furthest Point From Origin
You are given a string
movesof lengthnconsisting only of characters'L','R', and'_'. The string represents your movement on a number line starting from the origin0.In the
ithmove, you can choose one of the following directions:
- move to the left if
moves[i] = 'L'ormoves[i] = '_'- move to the right if
moves[i] = 'R'ormoves[i] = '_'Return the distance from the origin of the furthest point you can get to after
nmoves.
1 | class Solution { |