First solution in Clear category for Sum of Integers by Wartem
def sum_upto_n(n: int) -> int: return sum(range(1, n + 1))
Nov. 7, 2023