Given a string and a vector of integers, break the string into chunks whose lengths are given by the elements of the vector. Extra characters leftover at the end should be dropped. Example:
break_string('I seem to be having tremendous difficulty with my lifestyle',[4 1 5 22])
should return a 4x1 cell array:
ans = 'I se' 'e' 'm to ' 'be having tremendous d'
Additional test cases have been added.
3413 Solvers
298 Solvers
299 Solvers
Calculate the area of a triangle between three points
277 Solvers
324 Solvers