Skip to content

Instantly share code, notes, and snippets.

@Sadamingh
Last active September 3, 2020 10:18
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 Sadamingh/4b1801e0f0e502c969123a970563967b to your computer and use it in GitHub Desktop.
Save Sadamingh/4b1801e0f0e502c969123a970563967b to your computer and use it in GitHub Desktop.
def len_list(seq):
if seq == []:
return 0
else:
return 1 + len_list(seq[:-1])
len_list([1, 2, 3])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment