일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- LAMBDA
- Kafka
- S3
- finops
- 백준
- 맥주
- amqp
- 도메인 주도 설계
- 회고
- ddd
- Zappa
- API Gateway
- github pages
- 아키텍처
- 2020년
- AWSKRUG
- CloudWatch
- 머신러닝
- serverless
- 알고리즘
- AWS
- HEXO
- Leetcode
- React
- zookeeper
- 노션
- 메세지큐
- Notion
- billing
- 하이트진로
- Today
- Total
목록Leetcode (3)
인생은 고통의 연속
https://leetcode.com/problems/statistics-from-a-large-sample/ Statistics from a Large Sample - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 256 길이의 List를 주고 List의 item에서 index값은 값이고 value는 그 값의 갯수를 의미한다 [0,1,2,1] = 1이 1개, 2가 2개, 3이 1개란 뜻 이 List를 가지고 아래 5가지의 경우를 구하면 된다 minimum : ..
https://leetcode.com/problems/merge-two-sorted-lists/ Merge Two Sorted Lists - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 아니 풀고보니 솔루션이 유료됐네... 아무튼 2개의 정렬된 리스트를 합치는건데 무식하게 한번 풀어봤다 # Definition for singly-linked list. # class ListNode: # def __init__(self, val=0, next=None): # s..
leetcode.com/problems/two-sum/ Two Sum - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 언제든 이직할 수 있도록 코딩테스트 연습하려고 leetcode에 가입했다 그냥 제일 상위에 있는 문제 중 easy 난이도 하나를 골라서 풀었는데 한번에 통과는 했지만 많은 반성을 하게 됐다... 내 답은 이렇게 적었는데 class Solution: def twoSum(self, nums: List[int], target: int) -> List..