Sudoku: Difference between revisions

Content added Content deleted
m (→‎{{header|Wren}}: Changed to Wren S/H)
Line 13,993: Line 13,993:
=={{header|Wren}}==
=={{header|Wren}}==
{{trans|Kotlin}}
{{trans|Kotlin}}
<syntaxhighlight lang="ecmascript">class Sudoku {
<syntaxhighlight lang="wren">class Sudoku {
construct new(rows) {
construct new(rows) {
if (rows.count != 9 || rows.any { |r| r.count != 9 }) {
if (rows.count != 9 || rows.any { |r| r.count != 9 }) {