Solve a Hidato puzzle: Difference between revisions

→‎{{header|Perl 6}}: Syntax fix, "0" is true now. (didn't actually affect this particular problem)
m (→‎{{header|Perl 6}}: Add links to similar tasks)
(→‎{{header|Perl 6}}: Syntax fix, "0" is true now. (didn't actually affect this particular problem))
Line 2,437:
my $old = @grid[$y][$x];
 
return False if +$old and $old != $v;
return False if @known[$v] and @known[$v] !eqv $coord;
 
10,327

edits