Skip to content

Commit 33003f5

Browse files
authored
Update sort.cpp
1 parent 546ff9a commit 33003f5

File tree

1 file changed

+1
-1
lines changed
  • cpp/378.KthSmallestElementInASortedMatrix

1 file changed

+1
-1
lines changed

Diff for: cpp/378.KthSmallestElementInASortedMatrix/sort.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class Solution {
1010
return *it;
1111
}
1212
};
13-
class Solution {
13+
class Solution2 {
1414
public:
1515
int kthSmallest(vector<vector<int>>& matrix, int k) {
1616
vector<int>res;

0 commit comments

Comments
 (0)