Skip to content

Instantly share code, notes, and snippets.

@chhetripradeep
Created May 1, 2019 16:31
Show Gist options
  • Save chhetripradeep/fb1c2af57c7d3a65d9e2b0924defdcee to your computer and use it in GitHub Desktop.
Save chhetripradeep/fb1c2af57c7d3a65d9e2b0924defdcee to your computer and use it in GitHub Desktop.
Naive Appending
def concat_basic(iterations):
output = ""
for num in range(iterations):
output += str(num)
return output
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment