Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
bea99e5e1e | ||
|
665b8f3835 | ||
|
80e1239159 |
@ -1,16 +1,7 @@
|
||||
txt = input().split()
|
||||
txt = input().lower().split()
|
||||
while txt[-1] != "###":
|
||||
txt += input().split()
|
||||
amount = {}
|
||||
for i in txt:
|
||||
if i.lower() in amount:
|
||||
amount[i.lower()] += 1
|
||||
else:
|
||||
amount[i.lower()] = 1
|
||||
max = ["", 0]
|
||||
for i in amount:
|
||||
if amount[i] > max[1]:
|
||||
max = [i, amount[i]]
|
||||
else:
|
||||
pass
|
||||
print(max[0])
|
||||
txt += input().lower().split()
|
||||
m = [0]*len(txt)
|
||||
for i in range(len(txt)):
|
||||
m[i]=txt.count(txt[i])
|
||||
print(txt[m.index(max(m))])
|
||||
|
@ -1,7 +1,7 @@
|
||||
def choose(n, k):
|
||||
res = n/k
|
||||
while k > 1:
|
||||
n-= 1
|
||||
n -= 1
|
||||
k -= 1
|
||||
res *= n/k
|
||||
return res
|
||||
|
Loading…
Reference in New Issue
Block a user