| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- 프로그래머스
- ProblemSolving
- 알고리즘
- 하늘과 바람과 별과 詩
- Qualification Round
- Python
- LEVEL 2
- Code Jam
- C++
- Algorithm
- First Unique Character in a String
- 3D PRINTING
- GitLab
- Count Monobit Integers
- 문제해결
- MySQL
- hackerrank
- ProblemSoving
- K8S
- Kubernetes
- 파이썬
- swift
- 코딩테스트
- Code Jam 2022
- 2022
- 하늘과 바람과 별과 시
- 해커랭크
- leetcode
- 리트코드
Archives
- Today
- Total
목록ProblemSolving (10)
공대생의 비망록
[LeetCode][Easy] Merge Sorted Array 문제 Python 풀이
class Solution: def merge(self, nums1: List[int], m: int, nums2: List[int], n: int) -> None: """ Do not return anything, modify nums1 in-place instead. """ if n == 0: return if m == 0: # nums1 = nums2 # This will not meet the in-place requirement for i in range(n): # To meet the in-place requirement nums1[i] = ..
Programming Language/Python
2026. 2. 7. 23:27
[LeetCode][Easy] Two Sum 문제 Python 풀이
중첩 for-loop 사용: class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: for i in range(len(nums)): for j in range (i + 1, len(nums)): if nums[i] + nums[j] == target: return [i, j]시간복잡도 개선을 위해 Dictionary 자료구조를 활용하는 방식: class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: desiredTarget = {..
Programming Language/Python
2026. 2. 5. 14:17