Design an iterative and a recursive function called


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
Basic Computer Science: Design an iterative and a recursive function called
Reference No:- TGS01651743

Now Priced at $10 (50% Discount)

Recommended (91%)

Rated (4.3/5)