Tapan Rachchhtapanrachchh.hashnode.devยทSep 1, 20242022. Convert 1D Array Into 2D Arrayclass Solution: def construct2DArray(self, original: List[int], m: int, n: int) -> List[List[int]]: idealSize = len(original) if m * n != idealSize: return [] arr = [[0 for _ in range(n)] for _ in range(m)] ...PythonAdd a thoughtful commentNo comments yetBe the first to start the conversation.