From 6b60384160d1176e1540b53063d785e26e52cf49 Mon Sep 17 00:00:00 2001 From: DySQRD <74011531+DySQRD@users.noreply.github.com> Date: Tue, 8 Jun 2021 10:50:00 +0200 Subject: [PATCH] fix(curriculum): correct blank field representation (#42253) * Typo in Rosetta Code Challenge : "Sudoku" It is stated blank fields are represented by 0s when they are actually -1s. * Update curriculum/challenges/english/10-coding-interview-prep/rosetta-code/sudoku.md Co-authored-by: gikf <60067306+gikf@users.noreply.github.com> Co-authored-by: Mrugesh Mohapatra <1884376+raisedadead@users.noreply.github.com> Co-authored-by: gikf <60067306+gikf@users.noreply.github.com> --- .../english/10-coding-interview-prep/rosetta-code/sudoku.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/sudoku.md b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/sudoku.md index ccf9143f28..e0f6864a89 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/sudoku.md +++ b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/sudoku.md @@ -8,7 +8,7 @@ dashedName: sudoku # --description-- -Write a function to solve a partially filled-in normal 9x9 [Sudoku](https://en.wikipedia.org/wiki/Sudoku) grid and return the result. The blank fields are represented by 0s. [Algorithmics of Sudoku](https://en.wikipedia.org/wiki/Algorithmics_of_sudoku) may help implement this. +Write a function to solve a partially filled-in normal 9x9 [Sudoku](https://en.wikipedia.org/wiki/Sudoku) grid and return the result. The blank fields are represented by `-1`. [Algorithmics of Sudoku](https://en.wikipedia.org/wiki/Algorithmics_of_sudoku) may help implement this. # --hints--