# Search a 2D Matrix

Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties:

* Integers in each row are sorted from left to right.
* The first integer of each row is greater than the last integer of the previous row.

For example, Consider the following matrix:

> ```
> [ [1, 3, 5, 7], [10, 11, 16, 20], [23, 30, 34, 50] ]
> ```

```
Given 
> target = 3

return 
> true
```

{% tabs %}
{% tab title="Scala" %}

```scala
def searchMatrix(matrix: Array[Array[Int]], target: Int): Boolean = {
  if (matrix.isEmpty) false
  else {
    val (m, n) = (matrix.length, matrix(0).length)
    val length = m * n
    def find(start: Int, end: Int): Boolean = {
      if (end < start) false
      else {
        val mid = (start + end) / 2
        matrix(mid / n)(mid % n) match {
          case num if num == target => true
          case num if num < target => find(mid + 1, end)
          case num if num > target => find(start, mid - 1)
        }
      }
    }
    find(0, length - 1)
  }
}

val mat = Array(
  Array(1, 3, 5, 7),
  Array(10, 11, 16, 20),
  Array(23, 30, 34, 50)
)

searchMatrix(mat, 11)
searchMatrix(mat, 99)
```

{% endtab %}

{% tab title="Second Tab" %}

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://blog.bernardw.com/problems/search-a-2d-matrix.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
