From 6b9195000eb5404c247288b384d7ca2bacc1ab23 Mon Sep 17 00:00:00 2001 From: Joris Date: Sat, 6 Jun 2020 10:09:27 +0200 Subject: Add unit tests --- src/util/array.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/util/array.py') diff --git a/src/util/array.py b/src/util/array.py index 7dd0357..bb4eee3 100644 --- a/src/util/array.py +++ b/src/util/array.py @@ -1,5 +1,5 @@ def insert_position(x, xs, is_reversed: bool) -> int: for i, y in enumerate(xs): - if is_reversed and x > y or not is_reversed and x < y: + if is_reversed and x >= y or not is_reversed and x <= y: return i return len(xs) -- cgit v1.2.3