Format a table into a string of equally sized columns.
Time complexity: O(n) where n is the number of rows * columns.
Space complexity: O(n)
Table to format
Delimiter to use in columns
A formatted string representation of the table
Format
Format a table into a string of equally sized columns.
Time complexity: O(n) where n is the number of rows * columns.
Space complexity: O(n)