Get Mystery Box with random crypto!

class Solution {     public boolean judgeCircle(String moves) | CODING SOLUTION - Placement Jobs & Materials

class Solution {
    public boolean judgeCircle(String moves) {
        int x = 0, y = 0;
        for (char move: moves.toCharArray()) {
            if (move == 'U') y--;
            else if (move == 'D') y++;
            else if (move == 'L') x--;
            else if (move == 'R') x++;
        }
        return x == 0 && y == 0;
    }
}

Robot movement Code
Telegram - t.me/codingsolution_IT