From 785929c67209f5d70f34dd98c6253568a3e73534 Mon Sep 17 00:00:00 2001 From: guille Date: Sun, 15 Oct 2023 21:17:48 +0200 Subject: [PATCH] Adding time of complexity in commented lines --- algorithms/CSharp/src/Maths/square-matrix.cs/square-matrix.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/algorithms/CSharp/src/Maths/square-matrix.cs/square-matrix.cs b/algorithms/CSharp/src/Maths/square-matrix.cs/square-matrix.cs index b4aba1e2..b4d0af9e 100644 --- a/algorithms/CSharp/src/Maths/square-matrix.cs/square-matrix.cs +++ b/algorithms/CSharp/src/Maths/square-matrix.cs/square-matrix.cs @@ -1,8 +1,8 @@ /* +Time of complexity: O(n^2) */ - namespace Algorithms.Maths { public class Matrix