func TestGetMean(t *testing.T) {
    t.Run("nil input", func(t *testing.T) {
        input := &map[int]int{}
        res := GetMean(input)