0 out of 68 challenges solved

Transpose a matrix

def transpose_matrix(matrix):
    """
    Transposes a matrix represented as a list of lists.

    Args:
        matrix (list): The input matrix.

    Returns:
        list: The transposed matrix.
    """
    # TODO: Implement the transpose_matrix function
    pass