반응형
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
- Data Engineering
- dfs
- 코딩테스트
- 코엑스맛집
- BFS
- bigdata engineer
- 파이썬
- java
- 개발
- 프로그래머스
- BigData
- 코딩
- 영어
- 코엑스
- apache iceberg
- 알고리즘
- bigdata engineering
- 맛집
- 코테
- Trino
- Iceberg
- 여행
- 백준
- 양평
- 용인맛집
- 삼성역맛집
- HIVE
- hadoop
- Data Engineer
- 자바
Archives
- Today
- Total
지구정복
[Array] Leetcode - Product of Array Except Self (238) 본문
데이터 엔지니어링 정복/Algorithm
[Array] Leetcode - Product of Array Except Self (238)
noohhee 2022. 7. 19. 23:59728x90
반응형
-문제
https://leetcode.com/problems/product-of-array-except-self/
Product of Array Except Self - LeetCode
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
leetcode.com
-풀이(개인 IDE에서 푼 코드여서 릿코드에서는 변경 필요)
왼쪽 배열과 오른쪽 배열로 푼다.
왼쪽 배열
left[0] = nums[0] = 1
left[1] = left[0] * nums[1] = 1 * 1 = 1
left[2] = left[1] * nums[2] = 1 * 2 = 2
left[3] = left[2] * nums[3] = 2 * 3 = 6
오른쪽 배열
right[3] = 1
right[2] = right[3] * nums[3] = 4
right[1] = right[2] * nums[2] = 12
right[0] = right[1] * nums[1] = 24
정답배열
answer[0] = right[0] * left[0] = 24 * 1 = 24
answer[1] = right[1] * left[1] = 12 * 1 = 12
answer[2] = right[2] * left[2] = 4 * 2 = 8
answer[3] = right[3] * left[3] = 1 * 6
public class leet238 {
public static void main(String[] args) {
//int nums[] = {1, 2, 3, 4};
int nums[] = {-1, 1, 0, -3, 3};
int n = nums.length;
int answer[] = new int[n];
int p = 1;
//왼쪽 곱셈
for( int i=0; i<n; i++ ) {
answer[i] = p;
p = p * nums[i];
}
p = 1;
//오른쪽 곱셈
for( int i=n-1; i>=0; i-- ) {
answer[i] = answer[i] * p;
p = p * nums[i];
}
for( int i=0; i<n; i++ ) {
System.out.print( answer[i] + " " );
}
}
}
728x90
반응형
'데이터 엔지니어링 정복 > Algorithm' 카테고리의 다른 글
[구현/정렬] 프로그래머스 - 실패율 (Java) (0) | 2022.07.21 |
---|---|
[그리디] 프로그래머스 - 체육복 (java & python) (0) | 2022.07.21 |
[재귀/구현] 백준 - 재귀함수가 뭔가요? (17478) (0) | 2022.07.18 |
[우선순위큐] 백준 - 가운데를 말해요 (1655) (0) | 2022.06.20 |
[우선순위큐] 백준 - 최대힙(11279) (0) | 2022.06.20 |
Comments