Question: In Python, write a function concatMax. This function takes a string and an integer. It returns a string, which is the concatenation of as many

In Python, write a function concatMax. This function takes a string and an integer. It returns a string, which is the concatenation of as many copies of the given string as possible, without the length exceeding the given integer. If the given integer is less than the length of the given string, then it returns the empty string.

Examples:

  • concatMax("abc", 13) returns "abcabcabcabc". This is the concatenation of 4 copies of "abc". One more copy would result in length 15, which is greater than the given value 13.
  • concatMax("aardvark", 20) returns "aardvarkaardvark".
  • concatMax("aardvark", 10) returns "aardvark".
  • concatMax("aardvark", 5) returns "" (the empty string).

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!