© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Bright Scripters
Taking BrightSign programming to the next level
' https://projecteuler.net/problem=4 sub main() max = 0 for i = 999 to 100 step -1 for j = 999 to 100 step -1 n = i*j if palindromic(n) and n > max max = n end if ...
No responses yet.