Last active
September 6, 2019 13:21
-
-
Save VictorSaenger/f9ee638a4fff1050a3891f01a0b15b1e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def merge_list(list_text): | |
| l = len(list_text) | |
| c = 1 | |
| merge = eval(list_text[0])[1:] | |
| while c < l: | |
| merge = merge + eval(list_text[c])[1:] | |
| c += 1 | |
| return merge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment