Skip to content

Instantly share code, notes, and snippets.

@dvgodoy
Created May 1, 2022 14:09
Show Gist options
  • Save dvgodoy/910c92ba4189aa7bca1c214450a7857b to your computer and use it in GitHub Desktop.
Save dvgodoy/910c92ba4189aa7bca1c214450a7857b to your computer and use it in GitHub Desktop.
def exponentiation_builder(exponent):
def skeleton_exponentiation(x):
return x ** exponent
return skeleton_exponentiation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment