Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please use C,C++,Java or Python programming language to design your computer programs. (20%) Given an array of words and a length L, format the text
Please use C,C++,Java or Python programming language to design your computer programs.
(20%) Given an array of words and a length L, format the text such that each line has exactly L characters and is fully (left and right) justified. You should pack your words in a greedy approach; that is, pack as many words as you can in each line. Pad extra spaces when necessary so that each line has exactly L characters. Extra spaces between words should be distributed as evenly as possible. If the number of spaces on a line do not divide evenly between words, the empty slots on the left will be assigned more spaces than the slots on the right. For the last line of text, it should be left justified and no extra space is inserted between words. For example, words: ["This", "is", "an", "example", "of", "text", "justification."1 L: 16 Return the formatted lines as 4" "This is an", "example of text", "justification. " Please write a program text justfy () to generate the list of formatted lines from a list of wordsStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started