classSolution { public: boolsearchMatrix(vector<vector<int>>& matrix, int target){ int m=matrix.size(),n=matrix[0].size(); int left=0,right=m*n-1; while(left<=right){ int mid =left+(right-left)/2; int x = matrix[mid/n][mid%n]; if(x<target)left=mid+1; elseif(x>target)right=mid-1; elseif(x==target)returntrue; } returnfalse; } };
I am now a junior software engineer at Alibaba working on AI Agents. I graduated from UCLA and HUST. I want to be an expert in both artificial intelligence and software development. I have solid programming skills in Python, Rust, JavaScript, TypeScript, C++, Go, and Java. And I have hands-on experience with LangChain, LlamaIndex, FastAPI, Flask, Next.js, React.js, Vue.js, PyTorch, Docker, Nginx, Kafka, AWS, GCP, and other cloud technologies.