Skip to content
This repository has been archived by the owner on Oct 14, 2021. It is now read-only.

Counting occurrence of each word (Python) #276

Closed
nazuk27 opened this issue Oct 25, 2020 · 3 comments
Closed

Counting occurrence of each word (Python) #276

nazuk27 opened this issue Oct 25, 2020 · 3 comments

Comments

@nazuk27
Copy link
Contributor

nazuk27 commented Oct 25, 2020

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.

@nazuk27
Copy link
Contributor Author

nazuk27 commented Oct 25, 2020

@aditya109 Can you please assign this to me? Or can anyone assign this to me? I have already solved this in python

@aditya109
Copy link
Owner

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.

@aditya109 aditya109 added this to the HacktoberFest Last Date milestone Oct 25, 2020
nazuk27 added a commit to nazuk27/git-osp-for-beginners that referenced this issue Oct 25, 2020
aditya109 pushed a commit that referenced this issue Oct 28, 2020
* Added Counting occurrence of each word (Python) #276

Signed-off-by: Nazish Khan <[email protected]>

* Added Counting occurrence of each word (Python) in proper folder

* Added Reverse a doubly linked list (Python) #283

Signed-off-by: Nazish Khan <[email protected]>

* Delete CountingOccurrenceOfEachWord.py

* Delete ReverseDoublyLinkedList.py

* Added Reverse a doubly linked list (Python) #283

Signed-off-by: Nazish Khan <[email protected]>

* Added Modified Kaprekar Numbers (Python) #281

Signed-off-by: Nazish Khan <[email protected]>
aditya109 pushed a commit that referenced this issue Oct 28, 2020
* Added Counting occurrence of each word (Python) #276

Signed-off-by: Nazish Khan <[email protected]>

* Added Counting occurrence of each word (Python) in proper folder

* Added Reverse a doubly linked list (Python) #283

Signed-off-by: Nazish Khan <[email protected]>

* Delete CountingOccurrenceOfEachWord.py

* Delete ReverseDoublyLinkedList.py

* Added Reverse a doubly linked list (Python) #283

Signed-off-by: Nazish Khan <[email protected]>
aditya109 pushed a commit that referenced this issue Oct 28, 2020
* Added Counting occurrence of each word (Python) #276

Signed-off-by: Nazish Khan <[email protected]>

* Added Counting occurrence of each word (Python) in proper folder

* Added Reverse a doubly linked list (Python) #283

Signed-off-by: Nazish Khan <[email protected]>

* Delete CountingOccurrenceOfEachWord.py

* Delete ReverseDoublyLinkedList.py

* Added Reverse a doubly linked list (Python) #283

Signed-off-by: Nazish Khan <[email protected]>

* Added Modified Kaprekar Numbers (Python) #281

Signed-off-by: Nazish Khan <[email protected]>
@purva-saxena
Copy link

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.
Projects
None yet
Development

No branches or pull requests

3 participants