# 0293. Flip Game

<https://leetcode.com/problems/flip-game>

## Description

You are playing a Flip Game with your friend.

You are given a string `currentState` that contains only `'+'` and `'-'`. You and your friend take turns to flip **two consecutive** `"++"` into `"--"`. The game ends when a person can no longer make a move, and therefore the other person will be the winner.

Return all possible states of the string `currentState` after **one valid move**. You may return the answer in **any order**. If there is no valid move, return an empty list `[]`.

**Example 1:**

```
**Input:** currentState = "++++"
**Output:** ["--++","+--+","++--"]
```

**Example 2:**

```
**Input:** currentState = "+"
**Output:** []
```

**Constraints:**

* `1 <= currentState.length <= 500`
* `currentState[i]` is either `'+'` or `'-'`.

## ac

```java
class Solution {
    public List<String> generatePossibleNextMoves(String s) {
        List<String> res = new ArrayList<>();
        if (s.length() <= 1) return res;

        char[] chars = s.toCharArray();
        for (int i = 0; i < chars.length - 1; i++) {
            if (chars[i] == '+' && chars[i+1] == '+') {
                chars[i] = '-'; chars[i+1] = '-';
                res.add(String.valueOf(chars));
                chars[i] = '+'; chars[i+1] = '+';  
            }
        }

        return res;
    }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://jaywin.gitbook.io/leetcode/solutions/0293-flip-game.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
