avatar
Articles
102
Tags
32
Categories
9
Home
About
Showcase
Resume
Danny's BlogCoding_Quiz_SQL_1 Back to Home
Home
About
Showcase
Resume

Coding_Quiz_SQL_1

Created2025-09-17|Updated2025-09-18|DevCODING_QUIZ_SQL
|Post Views:
Author: Danny Ki
Link: https://kish191919.github.io/2025/09/17/Coding-Quiz-SQL-1/
Copyright Notice: All articles on this blog are licensed under CC BY-NC-SA 4.0 unless otherwise stated.
LEETCODESQL
Next
Coding_Quiz_Python_1
1. Two SumLink : https://leetcode.com/problems/two-sum/description/?difficulty=EASY Hash Map (딕셔너리 이용)보조 공간을 이용해 빠르게 차이를 찾는 방식. 시간 복잡도: O(n) 공간 복잡도: O(n) 1234567891011class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: num_map = {} for index, num in enumerate(nums): diff = target - num if diff in num_map: return [num_map[diff], index] num_map[num] = index Sorting + Two Pointers...
Related Articles
2025-09-17
Coding_Quiz_Python_1
1. Two SumLink : https://leetcode.com/problems/two-sum/description/?difficulty=EASY Hash Map (딕셔너리 이용)보조 공간을 이용해 빠르게 차이를 찾는 방식. 시간 복잡도: O(n) 공간 복잡도: O(n) 1234567891011class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: num_map = {} for index, num in enumerate(nums): diff = target - num if diff in num_map: return [num_map[diff], index] num_map[num] = index Sorting + Two Pointers...
avatar
Danny Ki
A data engineer's journey in coding, analytics, and building real-world systems.
Articles
102
Tags
32
Categories
9
Follow Me
Announcement
This is my Blog
Recent Posts
Coding_Quiz_SQL_12025-09-17
Coding_Quiz_Python_12025-09-17
Databricks CV Anomaly Detection2025-09-15
(한국어) AWS ML Associate (6) - Amazon S3 핵심 정리2025-09-14
(한국어) AWS ML Associate (5) - Amazon S3 핵심 정리2025-09-14
© 2025 By Danny KiFramework Hexo 7.3.0|Theme Butterfly 5.4.3