From 861fdb4c77f4f8467f0d8c40ea0f8aff5ee83564 Mon Sep 17 00:00:00 2001 From: Rocky Date: Thu, 18 Dec 2025 03:48:46 +0530 Subject: [PATCH] Add placeholder comment in rref function The "#" was missing in the starter code effectively misaligning the whole solution. --- .../starter_code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/questions/48_implement-reduced-row-echelon-form-rref-function/starter_code.py b/questions/48_implement-reduced-row-echelon-form-rref-function/starter_code.py index c7869868..f3b68d26 100644 --- a/questions/48_implement-reduced-row-echelon-form-rref-function/starter_code.py +++ b/questions/48_implement-reduced-row-echelon-form-rref-function/starter_code.py @@ -1,5 +1,5 @@ import numpy as np def rref(matrix): - Your code here + #Your code here pass