1. 程式人生 > >CCF-出現最多的數(Python)

CCF-出現最多的數(Python)

在這裡插入圖片描述

Python程式碼如下:

n = int(input())
a = list(map(int,input().split()))
# 排序函式 sort()
a.sort()
b = []
for i in range(n):
	# 計數函式 count()
    b.append(a.count(a[i]))
    # 索引函式 index() 檢測字串中是否包含子字串 str ,並返回其位置
    pos_max = b.index(max(b))
print(a[pos_max])

Python 給我們提供了許多庫函式,這個題目如果用C語言來編寫的話,就會比較複雜,而使用python來編寫只需呼叫呼叫三個函式就可以解決問題。
這裡給一個連結:

https://docs.python.org/3/library/functions.html#abs
包含Python中一些常用的庫函式,大家可以學習一下。