solve_sudoku
Solve a sudoku puzzle completely with step-by-step logical deduction. Input: 81-character string of digits (0 or . for empty cells). Whitespace is tolerated. Returns: every solving step with technique name + human-readable explanation + action, the final solution string, a technique summary (counts), and tutorial links. Only uses logical techniques — never guesses. If the puzzle cannot be solved logically, the steps will end before completion. Use this when the user wants to understand how to solve a puzzle from scratch. The response includes a solve_url for continuing the same board interactively and tutorial_links for techniques used in the solution.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| puzzle | Yes | 81-character sudoku string. Digits 1–9 for given cells, 0 or . for empty. Whitespace is ignored. |