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 | 31 |
Tags
- 피보나치
- kubernetes
- go
- Dynamic Programming
- KAKAO
- docker
- java
- Singleton Pattern
- Codility
- LeetCode
- easy
- 파이썬
- Python
- github
- 그리디
- Top-down
- Kotlin
- cpu scheduling
- 백준
- Backjoon
- GCP
- Programmers
- golang
- k8s
- mobaXTerm
- GKE
- Observer Pattern
- BubbleSort
- 알고리즘
Archives
- Today
- Total
To Be Developer
[LeetCode] 561. Array Partition I 본문
class Solution(object): def arrayPairSum(self, nums): """ :type nums: List[int] :rtype: int """ nums.sort() # nums 의 길이를 구하여 n을 구함 numsLen = len(nums) # n 을 구함 n = numsLen / 2 # 결과값을 받을 변수 res = 0 # nums의 index를 짝수 인덱스만 뽑아 res에 더함 for i in range(0, numsLen, 2): res += nums[i] return res nums = [1,4,3,2] Solution().arrayPairSum(nums)
'알고리즘 > LeetCode' 카테고리의 다른 글
[LeetCode] 942. DI String Match Python (0) | 2019.03.25 |
---|---|
[LeetCode] 557. Reverse Words in a String III (0) | 2019.03.24 |
[LeetCode] 28. Implement strStr() (0) | 2019.03.24 |
[LeetCode] 367. Valid Perfect Square (0) | 2019.03.24 |
[LeetCode] 290. Word Pattern (0) | 2019.03.24 |