#include using namespace std; class Solution { public: bool searchMatrix(vector> &matrix, int target); bool test(vector> &matrix, int target, bool answer); };