mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 10:44:06 +00:00
11 lines
256 B
C++
11 lines
256 B
C++
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
|
|
class Solution
|
|
{
|
|
public:
|
|
void setZero(vector<vector<int>> &matrix, int row, int column);
|
|
void setZeroes(vector<vector<int>> &matrix);
|
|
bool test(vector<vector<int>> &matrix, vector<vector<int>> &answer);
|
|
};
|