The Altera Centauri collection has been brought up to date by Darsnan. It comprises every decent scenario he's been able to find anywhere on the web, going back over 20 years.
25 themes/skins/styles are now available to members. Check the select drop-down at the bottom-left of each page.
Call To Power 2 Cradle 3+ mod in progress: https://apolyton.net/forum/other-games/call-to-power-2/ctp2-creation/9437883-making-cradle-3-fully-compatible-with-the-apolyton-edition
Announcement
Collapse
No announcement yet.
what's the 5 letter word with the most one-word anagrams?
Originally posted by Lul Thyme
BTW Kuci, your initial remark about ordering complex numbers was pointless . If you consider what you were replying to carefully, you'll see that it's just "witty" and doesn't actually have anything to do.
Originally posted by Asher
So we've seen Linux geek code (Ari), physicist/mathematician code (KH), and now for some software engineer code (in Java for variety):
I think I get the point, though. At least the one about declaring the same name for two iterators in nested loops... I actually did notice later on that I'd shadowed a variable definition (reusing line) in my code. It's strange (but normal for Haskell, I guess) that the compiler didn't even mention it at all, and it does make the code somewhat confusing. To avoid letting it happen again, here's a version with one of the variables completely removed :
Code:
main = interact $ unlines . take 1 . last . sortBy length_order . group . sort
. map sort . map (map toLower) . filter (\word -> 5 == length word) . lines
Comment