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
- camera permission
- augmentedDevice
- custom printing
- animation
- camera access
- silent printing
- ffi-napi
- Git
- Can't resolve
- html
- adb connect
- react-native-dotenv
- vercel git lfs
- Each child in a list should have a unique "key" prop.
- react-native
- nextjs
- rolldown
- ELECTRON
- github 100mb
- 이미지 데이터 타입
- Recoil
- Failed to compiled
- github pdf
- electron-packager
- npm package
- dvh
- adb pair
- github lfs
- 티스토리 성능
- device in use
Archives
- Today
- Total
Bleeding edge
[프로그래머스] 땅따먹기 - 자바스크립트 본문
https://programmers.co.kr/learn/courses/30/lessons/12913
이렇게 풀어도 되겠지? 하고 고집부리다가 문제 풀이에 시간을 너무 많이 썼던 문제.. dp를 활용하면 금새 풀었을 꺼같지만 이번 기회에 dp에 대해서 공부할 수 있는 기회가 되서 좋았다. 간만에 풀이 감이 안잡혀서 검색을 해봤었는데
https://onlydev.tistory.com/71
onlydev님의 풀이의 그림을 보고, 생각을 해보니 이해가 잘됬다. arr slice같은 경우엔 잘 사용했는데 reduce를 생각하면 풀수 있었을꺼같은데 혼자 마무리를 못해서 아쉬웠다.
function solution(land) {
let n = land.length;
for(let i =1; i<n;i++){
land[i] = land[i].map((v, index)=>v+Math.max(...land[i-1].slice(0, index), ...land[i-1].slice(index+1)))
}
return Math.max(...land[n-1]);
}
array slice는 아무래도 넘나 좋은거 같다.
'코딩테스트 공부' 카테고리의 다른 글
[프로그래머스] - 124 나라의 숫자 (0) | 2022.04.19 |
---|---|
[프로그래머스] 괄호 회전하기 - 자바스크립트 (0) | 2022.04.17 |
[프로그래머스] 이진 변환 반복하기 - 자바스크립트 (0) | 2022.04.15 |
[프로그래머스] 스킬트리 - 자바스크립트 (0) | 2022.04.13 |
[프로그래머스] - 방문 길이 (0) | 2022.04.13 |