Decode the Slanted Ciphertext
Solution
class Solution:
def decodeCiphertext(self, encodedText: str, rows: int) -> str:
cols = len(encodedText) // rows
res = []class Solution:
def decodeCiphertext(self, encodedText: str, rows: int) -> str:
cols = len(encodedText) // rows
res = []