From 9a23bdddcab9c0449f9796295788bc2a194ce365 Mon Sep 17 00:00:00 2001 From: Johnson <53025404+SchwarzMann07@users.noreply.github.com> Date: Wed, 28 Oct 2020 17:21:39 +0800 Subject: [PATCH] Update t13_mode1.py --- t13_mode1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t13_mode1.py b/t13_mode1.py index 62cae51..9d3147d 100644 --- a/t13_mode1.py +++ b/t13_mode1.py @@ -2,7 +2,7 @@ import statistics -A = [19, 18, 46, 18, 18, 19] +A = [19, 18, 46, 18, 18, 16] print(statistics.mode(A)) # the above only works if there is only 1 mode