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