We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Project Euler #75: Singular integer right triangles
Project Euler #75: Singular integer right triangles
Sort by
recency
|
13 Discussions
|
Please Login in order to post a comment
100 points. Python 3
ALERT:
Please don't use Pythagorean Triplets Generate algorithm in Geeks for geeks. Those codes are wrong. Please use this StackExchange instead
you can find my java solution here
any one can send code for this answer
Lazy solution to dumb test cases: precalculate all the counts up to N=5e6 then return the corresponding value for each test case. You really should put more effort (or at least some effort) into reasonable/decent/interesting requirements.