Solve a Hidato puzzle: Difference between revisions

Content added Content deleted
Line 1,906: Line 1,906:


=={{header|Julia}}==
=={{header|Julia}}==
{{trans|D}}
<lang julia>function hidatoconfigure(str)
<lang julia>function hidatoconfigure(str)
if match(r"[^\s\.\_\d]", str) != nothing
if match(r"[^\s\.\_\d]", str) != nothing
Line 2,002: Line 2,003:
5 4
5 4
</pre>
</pre>



=={{header|Kotlin}}==
=={{header|Kotlin}}==