Solve hanging lantern problem: Difference between revisions

Content added Content deleted
m (→‎{{header|Wren}}: Changed to Wren S/H)
(Added Uiua solution)
 
Line 1,418: Line 1,418:


There are 73566121315513295589120000 ways to take these 8 columns down.
There are 73566121315513295589120000 ways to take these 8 columns down.
</pre>

=={{header|Uiua}}==
{{works with|Uiua|0.10.0}}
<syntaxhighlight lang="Uiua">
Fac ← /×+1⇡
Lant ← ÷⊃(/(×⊙Fac)|Fac/+)

Lant [1 2 3]
Lant [1 3 3]
Lant [1 3 3 5 7]
</syntaxhighlight>
{{out}}
<pre>
60
140
5587021440
</pre>
</pre>