Smallest square that begins with n: Difference between revisions

m
→‎{{header|Wren}}: Removed redundant spaces.
m (→‎{{header|Phix}}: table looks better the other way round)
m (→‎{{header|Wren}}: Removed redundant spaces.)
Line 178:
}
System.print("Smallest squares that begin with 'n' in [1, 49]:")
for (chunk in Lst.chunks(squares, 10)) Fmt.print("$5d ", chunk)</lang>
 
{{out}}
9,488

edits