The function should return an array containing repetitions


You need to design an iterative and a recursive function called replicate_iter and replicate_recur respectively which will receive two arguments: times which is the number of times to repeat and data which is the number or string to be repeated.

The function should return an array containing repetitions of the data argument. For instance, replicate_recur(3, 5) or replicate_iter(3,5) should return [5,5,5]. If the times argument is negative or zero, return an empty array. If the argument is invalid, raise a ValueError.

Solution Preview :

Prepared by a verified Expert
Business Management: The function should return an array containing repetitions
Reference No:- TGS01593764

Now Priced at $10 (50% Discount)

Recommended (92%)

Rated (4.4/5)