Problem 288. Construct a string from letters and counts
Given two input arrays like this: [5,3,1] ['a','b','c']
Output a string that contains each letter the specified number of times, e.g.:
'aaaaabbbc'
If given an invalid input (for example, a negative number), output the string 'ERROR'.
Solution Stats
Problem Comments
-
1 Comment
Alex Feinman
on 8 Feb 2012
Now with improved tests, and reference solution (which I'm sure you can beat).
Solution Comments
Show commentsProblem Recent Solvers143
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2752 Solvers
-
Create a function handle that reverses the input arguments of another function handle
152 Solvers
-
Compute a dot product of two vectors x and y
1006 Solvers
-
15718 Solvers
-
Sum of diagonals elements of a matrix
223 Solvers
More from this Author3
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!