This repository has been archived by the owner on Oct 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 250
Counting occurrence of each word (Python) #276
Labels
Milestone
Comments
@aditya109 Can you please assign this to me? Or can anyone assign this to me? I have already solved this in python |
Hi @nazuk27 ! Please go on ahead and raise a PR for the same, linking this issue. I am assigning this issue to you. Please consider starring the repo, if you have not already to encourage further contributions. |
nazuk27
added a commit
to nazuk27/git-osp-for-beginners
that referenced
this issue
Oct 25, 2020
Signed-off-by: Nazish Khan <nazish1771@gmail.com>
aditya109
pushed a commit
that referenced
this issue
Oct 28, 2020
* Added Counting occurrence of each word (Python) #276 Signed-off-by: Nazish Khan <nazish1771@gmail.com> * Added Counting occurrence of each word (Python) in proper folder * Added Reverse a doubly linked list (Python) #283 Signed-off-by: Nazish Khan <nazish1771@gmail.com> * Delete CountingOccurrenceOfEachWord.py * Delete ReverseDoublyLinkedList.py * Added Reverse a doubly linked list (Python) #283 Signed-off-by: Nazish Khan <nazish1771@gmail.com> * Added Modified Kaprekar Numbers (Python) #281 Signed-off-by: Nazish Khan <nazish1771@gmail.com>
aditya109
pushed a commit
that referenced
this issue
Oct 28, 2020
* Added Counting occurrence of each word (Python) #276 Signed-off-by: Nazish Khan <nazish1771@gmail.com> * Added Counting occurrence of each word (Python) in proper folder * Added Reverse a doubly linked list (Python) #283 Signed-off-by: Nazish Khan <nazish1771@gmail.com> * Delete CountingOccurrenceOfEachWord.py * Delete ReverseDoublyLinkedList.py * Added Reverse a doubly linked list (Python) #283 Signed-off-by: Nazish Khan <nazish1771@gmail.com>
aditya109
pushed a commit
that referenced
this issue
Oct 28, 2020
* Added Counting occurrence of each word (Python) #276 Signed-off-by: Nazish Khan <nazish1771@gmail.com> * Added Counting occurrence of each word (Python) in proper folder * Added Reverse a doubly linked list (Python) #283 Signed-off-by: Nazish Khan <nazish1771@gmail.com> * Delete CountingOccurrenceOfEachWord.py * Delete ReverseDoublyLinkedList.py * Added Reverse a doubly linked list (Python) #283 Signed-off-by: Nazish Khan <nazish1771@gmail.com> * Added Modified Kaprekar Numbers (Python) #281 Signed-off-by: Nazish Khan <nazish1771@gmail.com>
can you please assign this task to me?? or can anyone please assign this task to me? |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
You are given 'n' words. Some words may repeat. For each word, output its number of occurrences. The output order should correspond with the input order of appearance of the word. See the sample input/output for clarification.
Constraints:
The sum of the lengths of all the words do not exceed 10^6.
All the words are composed of lowercase English letters only.
Input Format:
The first line contains the integer, n.
The next n lines each contain a word.
Output Format:
Output 2 lines.
On the first line, output the number of distinct words from the input.
On the second line, output the number of occurrences for each distinct word according to their appearance in the input.
Sample Input:
4
bcdef
abcdefg
bcde
bcdef
Sample Output:
3
2 1 1
Explanation:
There are 3 distinct words. Here, "bcdef" appears twice in the input at the first and last positions. The other words appear once each. The order of the first appearances are "bcdef", "abcdefg" and "bcde" which corresponds to the output.
The text was updated successfully, but these errors were encountered: