From 27e06b73b8fa5a7ff4b4c68e8eee4a54bb926e35 Mon Sep 17 00:00:00 2001 From: Geoff Mendal Date: Mon, 21 Oct 2019 13:53:01 -0700 Subject: [PATCH] Update math_ops_solution.ipynb Fix typo in the test case description for the "mean". Sum is 55, number of elements is 11, so the mean is 5. The actual test case is correct. --- online_judges/math_ops/math_ops_solution.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/online_judges/math_ops/math_ops_solution.ipynb b/online_judges/math_ops/math_ops_solution.ipynb index 801f90c8..c8ef0c86 100644 --- a/online_judges/math_ops/math_ops_solution.ipynb +++ b/online_judges/math_ops/math_ops_solution.ipynb @@ -58,7 +58,7 @@ "* [5, 2, 7, 9, 9, 2, 9, 4, 3, 3, 2]\n", " * max: 9\n", " * min: 2\n", - " * mean: 55\n", + " * mean: 5\n", " * mode: 9 or 2" ] },