iT邦幫忙

2023 iThome 鐵人賽

DAY 24
0
自我挑戰組

CPE 49題訓練系列 第 24

YKL23.UVA10062 Tell me the frequencies!

  • 分享至 

  • xImage
  •  

Tell me the frequencies!

c=0
while 1:
	try:
		a=list(input())
		if c!=0:
			print()
		c=1	
		dic={}
		for i in a:
			if ord(i) not in dic:
				dic[ord(i)]=1
			else:
				dic[ord(i)]+=1
		ans=sorted(dic.items(),key=lambda x:x[0],reverse=1)
		ans=sorted(ans,key=lambda x:x[1])
		for x,y in ans:
			print('{} {}'.format(x,y))
	except:
		break

上一篇
YKL26.UVA10057 A mid-summer night’s dream
下一篇
YKL44.UVA10226 Hardwood species
系列文
CPE 49題訓練30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言