An acrostic cipher is a way of embedding one message within another by taking the first (or last) word of each line. Given a string s, and a positive integer n, return a string containing the message you would get by taking the first word on each line, having written the message in s with n words on each line.
You do not need to worry about punctuation. A "word" is anything separated by a space. The input message will use only single spaces (and no line breaks or other whitespace). Similarly, the output message should use only single spaces between words.
Note that the number of words in s is not necessarily a multiple of n.
Also note that this problem can be solved more directly than using the method described above.
t = "This week's Cody challenge is designed to test an essential skill that's easy to have a problem with.";
acrostic(t,4)
ans =
"This is an easy problem"
Solution Stats
Problem Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers124
Suggested Problems
-
4198 Solvers
-
1781 Solvers
-
Piecewise linear interpolation
640 Solvers
-
1079 Solvers
-
212 Solvers
More from this Author12
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!