static void Main(string[] args) { var words = new string[] { "This", "is", "an", "example", "of", "text", "justification." }; var solution = new Solution(); solution.FullJustify(words, 16); }