Skip to content

74. Search a 2D Matrix#14

Open
yamashita-ki wants to merge 2 commits intomainfrom
leetcode/74
Open

74. Search a 2D Matrix#14
yamashita-ki wants to merge 2 commits intomainfrom
leetcode/74

Conversation

@yamashita-ki
Copy link
Owner

```java
public class Solution {
public boolean searchMatrix(int[][] matrix, int target) {
int rows = matrix.length, cols = matrix[0].length;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

私は2行にしてしまいますね。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants