-
Notifications
You must be signed in to change notification settings - Fork 8
/
Word Order.py
58 lines (36 loc) · 1.35 KB
/
Word Order.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# You are given 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.
# Note: Each input line ends with a "\n" character.
# Constraints:
# The sum of the lengths of all the words do not exceed
# All the words are composed of lowercase English letters only.
# Input Format
# The first line contains the integer, .
# The next lines each contain a word.
# Output Format
# Output 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 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.
n = int(input())
list1 = []
dicti = {}
for i in range(0,n):
list1.append(input())
for i in list1:
if i in dicti:
dicti[i] += 1
else:
dicti[i] = 1
print(len(dicti))
for i in dicti:
print(dicti[i],end=" ")