You are viewing a single comment's thread. Return to all comments →
decoded_script = "" for j in range(m): for i in range(n): decoded_script += matrix[i][j] print(re.sub(r"(?<=[a-zA-Z])[^a-zA-Z]+(?=[a-zA-Z])", " ", decoded_script))
Seems like cookies are disabled on this browser, please enable them to open this website
Matrix Script
You are viewing a single comment's thread. Return to all comments →