Skip to content

Instantly share code, notes, and snippets.

@MahmudHasanCSE
Last active April 28, 2018 04:02
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 MahmudHasanCSE/4888e2dca6026c151cb5bf8af63f63ca to your computer and use it in GitHub Desktop.
Save MahmudHasanCSE/4888e2dca6026c151cb5bf8af63f63ca to your computer and use it in GitHub Desktop.
# a^n --- O(n)
def pow(a, n):
result = 1.0
for _ in range(n):
result = result * a
return result
print(pow(2, 2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment