Skip to content

Instantly share code, notes, and snippets.

@dipta007
Created June 13, 2020 09:42
Show Gist options
  • Save dipta007/06645ce54f290bcef8ffaa01883cf668 to your computer and use it in GitHub Desktop.
Save dipta007/06645ce54f290bcef8ffaa01883cf668 to your computer and use it in GitHub Desktop.
# Ugly code
def call(arr):
arr.append(1)
call(arr)
# Clean Code
def call(arr):
arr.append(1)
return arr
arr = call(arr)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment