Menu
Coddy logo textTech

Recap - Sigma Function

Part of the Fundamentals section of Coddy's Swift journey — lesson 55 of 86.

challenge icon

Challenge

Easy

Create a function called sigma that calculates the sum of all integers from 1 to a given number.

Parameters:

  • n (Int): The upper limit of the sum (use _ to omit the argument label)

Returns: The sum of all integers from 1 to n (Int)

After defining the function, read an integer from input, call the sigma function with that value, and print the result.

You will receive the following input:

  • A single integer representing the value of n

For example, if the input is 5, the function calculates 1 + 2 + 3 + 4 + 5 = 15, so the output should be:

15

Try it yourself

// TODO: Define the sigma function that calculates the sum of integers from 1 to n
// Use _ to omit the argument label


// Read input
let n = Int(readLine()!)!

// Call the function and print the result
print(sigma(n))

All lessons in Fundamentals