flag
Mark a specific cell on the Minesweeper board as a potential mine by specifying its row and column coordinates using this tool.
Instructions
Place a flag at a cell on the Minesweeper board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
col | Yes | ||
row | Yes |
Input Schema (JSON Schema)
{
"properties": {
"col": {
"type": "number"
},
"row": {
"type": "number"
}
},
"required": [
"row",
"col"
],
"type": "object"
}