GooseterV / Project-Euler

Inconsistent return statements PYL-R1710
Style
Minor
2 years ago2 years old
Either all return statements in a function should return an expression, or none of them should.
1
2def main():3    for a in range(1, 1001):
4        for b in range(1, 1001):
5            c = 1000 - a - b