Talk:Brilliant numbers

From Rosetta Code
Revision as of 22:23, 22 April 2022 by Petelomax (talk | contribs) (100 limit quibble)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

100 limit quibble

In my translation of C++, I replaced for j=i to length(primes) do with for j=1 to i do. The reason being I didn't really believe the length()>100 test, whereas with 1 to i it feels (more) like that must be OK. Made no actual difference. Both might be fine. --Pete Lomax (talk) 22:23, 22 April 2022 (UTC)