'''
>>> gradeDistribution([17, 25, 33, 12, 10.0, 98, 88.5])
[1, 2, 1, 1, 0, 0, 0, 0, 1, 1]
>>> gradeDistribution([10, 20, 30, 40, 80, 80.5, 100])
[1, 1, 1, 1, 0, 0, 0, 1, 1, 1]
>>> gradeDistribution([])
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
>>> gradeDistribution([70.000001, 71, 71, 71, 71, 75, 79, 71, 77])
[0, 0, 0, 0, 0, 0, 0, 9, 0, 0]
>>> gradeDistribution([90, 91, 0, 100])
[1, 0, 0, 0, 0, 0, 0, 0, 1, 2]
'''
#-------------------------------------------------------
from gradeDistribution import *
#-------------------------------------------------------
if __name__ == "__main__":
    import doctest
    doctest.testmod()
