First solution in Creative category for Sum of Integers by wo.tomasz
def sum_upto_n(N: int) -> int: return sum(range(N+1))
May 1, 2025
Comments: