Skip to content

Instantly share code, notes, and snippets.

@brennanbrown
Created August 5, 2020 17:50
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 brennanbrown/c4794c60e21b6d9c1936e6244e8ffd05 to your computer and use it in GitHub Desktop.
Save brennanbrown/c4794c60e21b6d9c1936e6244e8ffd05 to your computer and use it in GitHub Desktop.
def get_list_length(my_list)
if my_list == []:
return 0
return 1 + get_list_length(my_list[1:]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment