Sum of squares

Report a typo

Define a function that computes the sum of the squares of the numbers from 11 to nn.

There are many ways to solve this task, but please try to solve using recursion.

Sample Input 1:

10

Sample Output 1:

385
Write a program in Python 3
def sum_squares(n):
pass

print(sum_squares(int(input())))
___

Create a free account to access the full topic