checkio-medium

2993 단어
중위수를 구하다.먼저sort()를 정렬하고 2에 여수를 취하여 여수가 0인지 판단합니다.주의해야 할 것은/연산에서float로 자동으로 저장됩니다. 예를 들어 데이터 [len(data)/2]를 호출할 때 데이터 안의 수는 반드시 성형해야 하기 때문에 int()를 변환해야 합니다.
def checkio(data):
    x=len(data)%2
    data.sort()

    if x==0:
        y=len(data)/2
        data[0]=(data[int(y-1)]+data[int(y)])/2
    else:
        z=(len(data)-1)/2
        data[0]=data[int(z)]
    #replace this for solution
    return data[0]


#These "asserts" using only for self-checking and not necessary for auto-testing
if __name__ == '__main__':
    assert checkio([1, 2, 3, 4, 5]) == 3, "Sorted list"
    assert checkio([3, 1, 2, 5, 3]) == 3, "Not sorted list"
    assert checkio([1, 300, 2, 200, 1]) == 2, "It's not an average"
    assert checkio([3, 6, 20, 99, 10, 15]) == 12.5, "Even length"
    print("Start the long test")
    assert checkio(list(range(1000000))) == 499999.5, "Long."
    print("The local tests are done.")

좋은 웹페이지 즐겨찾기