#zigzag
Read more stories on Hashnode
Articles with this tag
Here is the solution of python: lass Solution: def convert(self, s: str, numRows: int) -> str: if numRows == 1 or numRows >= len(s): ...