0
How to find repeated words in given paragraph ?
only using for loop,array, if else,string.
1 Antwort
0
The best thing I can think of is create an List of strings to store the words of the paragraph. Then write an algorithm to find matches in the list. make sure to keep track of the repeated words that are found. A list is kind of like an array, sort of.