Skip to content

Commit 4988843

Browse files
authored
Update check-if-every-row-and-column-contains-all-numbers.cpp
1 parent 27469f9 commit 4988843

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

C++/check-if-every-row-and-column-contains-all-numbers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Solution {
2121
// Time: O(n^2)
2222
// Space: O(1)
2323
// [[1,3,3,4,4],[4,1,3,3,4],[4,4,1,3,3],[3,4,4,1,3],[3,3,4,4,1]]
24-
class Solution_Wrong{
24+
class Solution_Wrong {
2525
public:
2626
bool checkValid(vector<vector<int>>& matrix) {
2727
for (int i = 0; i < size(matrix); ++i) {

0 commit comments

Comments
 (0)