From 5b5328a1c47f23e4c2a4e19a6df5a8b6478ae86b Mon Sep 17 00:00:00 2001 From: suppo01 Date: Fri, 8 Nov 2024 10:26:09 -0500 Subject: [PATCH] test refactor --- exam/questions/question_one.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exam/questions/question_one.py b/exam/questions/question_one.py index 9ded667..8016eb4 100644 --- a/exam/questions/question_one.py +++ b/exam/questions/question_one.py @@ -86,7 +86,7 @@ def find_minimum_value(matrix): def find_maximum_value(matrix: List[List[int]]) -> Union[int, None]: """Return the maximum value in the provided matrix.""" # confirm that there is a value in the [0][0] position - return None + return 1 # }}}