Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- github
- CSS
- math
- leetcode
- java
- array
- 파이썬
- scss
- sorting
- 변수
- 백준
- greedy
- SasS
- 자료형
- JavaScript
- Algorithm
- string
- hash table
- computed
- 자료구조
- JS
- HTML
- 알고리즘
- 컴포넌트
- vue.js
- 코딩테스트
- dynamic programming
- Python
- JavaSceipt
- 프로그래머스
Archives
- Today
- Total
Posis
[LeetCode][JavaScript] 561. Array Partition I 본문
[LeetCode][JavaScript] 561. Array Partition I
문제 출처: https://leetcode.com/problems/array-partition-i/
[직접 푼 코드]
var arrayPairSum = function(nums) {
nums.sort((a,b) => a-b)
let result = 0
for(let i=0; i<nums.length; i+=2) {
result += nums[i]
}
return result
};
[문제 풀이]
1. 배열을 정렬합니다. (sort 메서드)
2. 반복문을 활용하여 2칸씩 올라가 더해줍니다. [1, 2, 2, 5, 6, 6] = 9
알고리즘 스터디: https://github.com/ROUTINE-STUDY/Algorithm
누구나 참여 가능한 알고리즘 스터디입니다.
알고리즘뿐만 아니라 개발을 하면서 겪은 이슈, 이론을 정리하는 Routine-Study를 운영 중입니다.
728x90
'알고리즘 > leetcode' 카테고리의 다른 글
[LeetCode][JavaScript] 9. Palindrome Number (0) | 2021.08.07 |
---|---|
[LeetCode][JavaScript] 88. Merge Sorted Array (0) | 2021.07.29 |
[LeetCode][JavaScript] 1436. Destination City (0) | 2021.07.29 |
[LeetCode][JavaScript] 70. Climbing Stairs (0) | 2021.07.29 |
[LeetCode][JavaScript] 1323. Maximum 69 Number (0) | 2021.07.29 |