First solution in Speedy category for Sum of Integers by Pavellver
def sum_upto_n(N: int) -> int: return sum(range(N + 1))
Nov. 1, 2023
Comments: