Permutations with repetitions: Difference between revisions

added k
(Added Julia language)
(added k)
Line 1,205:
[5, 6, 6]
[6, 6, 6]</pre>
=={{header|Kotlin}}==
enlist each from x on the left and each from x on the right where x is range 10
<lang k>
,/x/:\:x:!10
</lang>
 
=={{header|Kotlin}}==
Anonymous user