You are viewing a single comment's thread. Return to all comments →
def encryption(s): num_col = math.ceil(math.sqrt(len(s))) return ' '.join(''.join(s[i] for i in range(c, len(s), num_col)) for c in range(num_col))
Seems like cookies are disabled on this browser, please enable them to open this website
Encryption
You are viewing a single comment's thread. Return to all comments →