Smallest power of 6 whose decimal expansion contains n: Difference between revisions

Added 11l
m (Small fix of Python solution)
(Added 11l)
Line 6:
 
 
 
=={{header|11l}}==
{{trans|Python}}
 
<lang 11l>F smallest_six(n)
V p = BigInt(1)
L String(n) !C String(p)
p *= 6
R p
 
L(n) 22
print(‘#2: #.’.format(n, smallest_six(n)))</lang>
 
{{out}}
<pre>
0: 10077696
1: 1
2: 216
3: 36
4: 46656
5: 46656
6: 6
7: 7776
8: 2176782336
9: 1296
10: 10077696
11: 2821109907456
12: 1296
13: 13060694016
14: 6140942214464815497216
15: 101559956668416
16: 216
17: 60466176
18: 470184984576
19: 21936950640377856
20: 170581728179578208256
21: 216
</pre>
 
=={{header|ALGOL 68}}==
1,481

edits