From 26f7afbe13ffc9829287d28082f5473070cd3338 Mon Sep 17 00:00:00 2001 From: Steven Date: Wed, 22 May 2024 11:36:06 +0100 Subject: add a failing test --- challenge-270/steven-wilson/python/ch-2.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/challenge-270/steven-wilson/python/ch-2.py b/challenge-270/steven-wilson/python/ch-2.py index dfadc663ec..9fcc5985f3 100644 --- a/challenge-270/steven-wilson/python/ch-2.py +++ b/challenge-270/steven-wilson/python/ch-2.py @@ -23,6 +23,8 @@ def distribute_elements(integers, x, y): 6 >>> distribute_elements([4, 4, 2, 6], x=3, y=1) 4 + >>> distribute_elements([1, 1, 1, 6], x=3, y=1) + 10 ''' integers = sorted(integers) max_int = integers[-1] -- cgit