일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
- leetcode1880
- revers
- leetcode832
- 1859
- javascript
- python3
- maketrans
- Ethiopian Veterans of the Korean War
- translate
- 1880
- Kagnew
- 청년전용전세대출
- string
- 버팀목청년전세대출
- 청년전세
- sort numbers
- 청년맞춤형전세대출
- REVERSE
- Sorting
- 1913
- Sort
- 청년무직자전세대출
- 중기청대출
- a
- Ethiopian veterans
- 청년전세대출
- Python
- Array
- LeetCode
- Today
- Total
목록leetcode832 (2)
Momentary Comfort
Given an n x n binary matrix image, flip the image horizontally, then invert it, and return the resulting image. To flip an image horizontally means that each row of the image is reversed. For example, flipping [1,1,0] horizontally results in [0,1,1]. To invert an image means that each 0 is replaced by 1, and each 1 is replaced by 0. For example, inverting [0,1,1] results in [1,0,0]. Example 1: ..
Given an n x n binary matrix image, flip the image horizontally, then invert it, and return the resulting image. To flip an image horizontally means that each row of the image is reversed. For example, flipping [1,1,0] horizontally results in [0,1,1]. To invert an image means that each 0 is replaced by 1, and each 1 is replaced by 0. For example, inverting [0,1,1] results in [1,0,0]. Example 1: ..