Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 나쫌
- 메탈퍼즐
- 밥먹고
- LeetCode
- 미앤아이
- 발더스3
- 서울제빵소
- 바질토마토뭐시기
- 발더스게이트
- 게임
- 발더스모드
- 토이프로젝트
- 하스스톤
- 잠실새내
- 코테
- DIY
- 버즈2프로
- 3d퍼즐
- javascript
- 취미
- 천등
- 코딩테스트
- 뜨아거
- 송리단
- 누룽지소금빵
- 알고리즘테스트
- 메일우유
- 맛집
- 노노그램
- 눈알빠지겠네
Archives
- Today
- Total
.Zzumbong
[leetCode/JS] 223. Rectangle Area 본문
문제 설명
Given the coordinates of two rectilinear rectangles in a 2D plane, return the total area covered by the two rectangles.
The first rectangle is defined by its bottom-left corner (ax1, ay1)
and its top-right corner (ax2, ay2)
.
The second rectangle is defined by its bottom-left corner (bx1, by1)
and its top-right corner (bx2, by2)
.
입출력 예
Example 1:
Input: ax1 = -3, ay1 = 0, ax2 = 3, ay2 = 4, bx1 = 0, by1 = -1, bx2 = 9, by2 = 2
Output: 45
Example 2:
Input: ax1 = -2, ay1 = -2, ax2 = 2, ay2 = 2, bx1 = -2, by1 = -2, bx2 = 2, by2 = 2
Output: 16
Constraints
-104 <= ax1 <= ax2 <= 104
-104 <= ay1 <= ay2 <= 104
-104 <= bx1 <= bx2 <= 104
-104 <= by1 <= by2 <= 104
내 솔루션
- 겹치는 부분을 어떻게 알아낼까~ 하다가 찾아냄.
- 나머진 그냥 넓이 구하고 겹치는 부분만 빼주면됨!
var computeArea = function(ax1, ay1, ax2, ay2, bx1, by1, bx2, by2) {
let width = Math.min(ax2, bx2) - Math.max(ax1, bx1);
let height = Math.min(ay2, by2) - Math.max(ay1, by1);
width = width > 0 ? width : 0;
height = height > 0 ? height : 0;
return ((ax2 - ax1) * (ay2 - ay1) + (bx2 - bx1) * (by2 - by1)) - width * height;
};
감상평
- 재미이따!!
'coding test > leetCode' 카테고리의 다른 글
[leetCode/JS] 1360. Number of Days Between Two Dates (0) | 2022.11.23 |
---|---|
[leetCode/JS] 263. Ugly Number (0) | 2022.11.23 |
[leetCode/JS] 1975. Maximum Matrix Sum (0) | 2022.11.23 |
[leetCode/JS] 374. Guess Number Higher or Lower (0) | 2022.11.23 |
[leetCode/JS] 1721. Swapping Nodes in a Linked List (0) | 2022.11.23 |
Comments