Largest int from concatenated ints: Difference between revisions

m (→‎{{header|Common Lisp}}: Swapping implementations, as the original one is deeply nested and does not match the task's suggestions, making it harder to understand)
Line 420:
 
=={{header|Common Lisp}}==
=== Sort by two-by-two comparison of largest concatenated result ===
 
Implementing the second algorithm suggestion :
 
<lang lisp>
Line 444 ⟶ 443:
 
 
=== Variation around the sort with padded most significant digit ===
 
<lang lisp>
Anonymous user