Skip to content

Instantly share code, notes, and snippets.

@chhetripradeep
Created May 1, 2019 16:39
Show Gist options
  • Save chhetripradeep/c2452b87b9df809a0c0ef5eec3222eb4 to your computer and use it in GitHub Desktop.
Save chhetripradeep/c2452b87b9df809a0c0ef5eec3222eb4 to your computer and use it in GitHub Desktop.
List Join
def concat_join(iterations):
output = []
for num in range(iterations):
output.append(str(num))
return "".join(output)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment