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
- Git
- dvh
- html
- Can't resolve
- ELECTRON
- github lfs
- adb connect
- npm package
- silent printing
- react-native
- ffi-napi
- rolldown
- augmentedDevice
- vercel git lfs
- 이미지 데이터 타입
- electron-packager
- device in use
- react-native-dotenv
- Recoil
- custom printing
- github pdf
- camera permission
- github 100mb
- Each child in a list should have a unique "key" prop.
- 티스토리 성능
- nextjs
- adb pair
- Failed to compiled
- camera access
- animation
Archives
- Today
- Total
Bleeding edge
[LeetCode] 1299. Replace Elements with Greatest Element on Right Side - 자바스크립트 0617 본문
코딩테스트 공부
[LeetCode] 1299. Replace Elements with Greatest Element on Right Side - 자바스크립트 0617
codevil 2022. 6. 17. 11:21https://leetcode.com/problems/replace-elements-with-greatest-element-on-right-side/
주어진 arr에서, 본인의 오른쪽에 위치한 숫자중 가장 큰 숫자를 push하는 문제이다.
arr의 길이가 n개라면 return한 값의 arr도 n개가 나와야한다.
주의할 사항은, 값이 없으면 -1을 push해야한다. 이 문제에서 사용될 것은
1. for문 (arr를 기준으로)
2. Math.max ( 오른쪽에 있는 모든 것들)
3. 3항 연산자
이렇게 3개를 사용하였다
전체 풀이
var replaceElements = function (arr) {
const result = []
for (let i = 0; i < arr.length; i++) {
i !== arr.length - 1 ? result.push(Math.max(...arr.slice(i + 1))) : result.push(-1)
}
return result
};
'코딩테스트 공부' 카테고리의 다른 글
[LeetCode] 1701. Average Waiting Time - 자바스크립트 0617 (0) | 2022.06.17 |
---|---|
[LeetCode] Reverse Prefix of Word - 자바스크립트 0617 (0) | 2022.06.17 |
[LeetCode] 75. Sort Colors - 자바스크립트 0616 (0) | 2022.06.16 |
[LeetCode] 136. Single Number - 자바스크립트 0616 (0) | 2022.06.16 |
[LeetCode] 3. Longest Substring Without Repeating Characters - 자바스크립트 0614 (0) | 2022.06.14 |