Skip to content

Instantly share code, notes, and snippets.

@koushikmln
Created February 6, 2018 08:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koushikmln/0b41a27ad21448c86284e81f1bee5478 to your computer and use it in GitHub Desktop.
Save koushikmln/0b41a27ad21448c86284e81f1bee5478 to your computer and use it in GitHub Desktop.
def sumOfInt(n,fun):
sum = 0
for i in range(0,n+1):
sum = sum + fun(i)
return sum
sumOfInt(5,lambda x: x*x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment