728x90
<문제 링크>
https://leetcode.com/problems/search-a-2d-matrix/
<문제 풀이>
1. 각 행에 target 값이 있으면 true
<코드>
class Solution:
def searchMatrix(self, matrix: List[List[int]], target: int) -> bool:
for i in matrix:
if target in i:
return True
return False
'두두의 알고리즘 > 문제' 카테고리의 다른 글
[비트연산] 릿코드 231 Easy 'Power of Two' (Python) (0) | 2022.02.05 |
---|---|
[이분탐색] 릿코드 153 Medium 'Find Minimum in Rotated Sorted Array' (Python) (0) | 2022.02.04 |
[이분탐색] 릿코드 Medium 33 'Search in Rotated Sorted Array' (Python) (0) | 2022.02.03 |
[이분탐색] 릿코드 Medium 34 'Find First and Last Position of Element in Sorted Array' (Python) (0) | 2022.02.03 |
[해시] 릿코드 Medium 567 'Permutation in String' (Python) (0) | 2022.01.27 |