Problem 65. Word Counting and Indexing
You are given a list of strings, each being a list of words divided by spaces. Break the strings into words, then return a master word table of all the words and an indexed version of each string.
The master list should have no repeated entries and should be sorted in alphabetical order. The index list must be an array cell of index of each cell member corresponding to the same value in the master list.
For Example
If str_list = {'one two three','two one four zero'}
then
- word_table = {'four','one','three','two','zero'}
- str_index_list = {[2 4 3],[4 2 1 5]}.
Notice that no words are repeated in word_table, and each string in the string_list can be regenerated by referencing into the word_table using the string_index_list.
Solution Stats
Problem Comments
-
14 Comments
Show
11 older comments
Marco Riani
on 31 Dec 2021
I must say I do not agree with the bad comments which have been given to this test. I think it is explained properly and the tests seem to me appropriate.
arsenic 陈
on 8 Mar 2022
https://blog.csdn.net/qq_44846756/article/details/116567963
have the answer
Dianne Valera
on 26 Apr 2022
enjoyed this problem!
Solution Comments
Show commentsProblem Recent Solvers1828
Suggested Problems
-
Make the vector [1 2 3 4 5 6 7 8 9 10]
50168 Solvers
-
8970 Solvers
-
Arrange vector in ascending order
785 Solvers
-
Area of an equilateral triangle
6362 Solvers
-
4930 Solvers
More from this Author96
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!