일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- S3
- 도메인 주도 설계
- LAMBDA
- serverless
- HEXO
- 알고리즘
- Kafka
- ddd
- 2020년
- Notion
- 머신러닝
- AWS
- 노션
- finops
- 하이트진로
- 메세지큐
- Leetcode
- 목표
- API Gateway
- 아키텍처
- AWSKRUG
- React
- github pages
- zookeeper
- 백준
- billing
- 회고
- CloudWatch
- Zappa
- amqp
- Today
- Total
인생은 고통의 연속

https://leetcode.com/problems/goal-parser-interpretation/ Goal Parser Interpretation - 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 그냥 랜덤픽으로 뽑은건데 이 문제는 처음볼때부터 뭔가했다... 그냥 영어 읽을 수 있나 수준...? 내가 놓치는 뭔가가 있나라고 계속 봤지만 딱히 없는거 같아서 아래처럼 1줄로 제출하고 끝 class Solution: def interpret(self, comma..

https://leetcode.com/problems/sum-of-subarray-minimums/ Sum of Subarray Minimums - 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 문제는 주어진 array 의 모든 sub array에 대해서 최소값을 구해서 합계를 내는 것이다 처음에는 난이도가 Medium이지만 무식하게 짜보았다 class Solution: def sumSubarrayMins(self, arr: List[int]) -> int: r..

S3란? S3란 확장성과 데이터 가용성 및 보안과 성능을 제공하는 객체 스토리지 서비스입니다 쉽게 말하자면 Goole One, iCloud와 같은 파일 저장 서비스인데 아래처럼 bucket(버킷)이라는 폴더에 Object(객체)인 파일을 저장할 수 있습니다 추가적으로 위의 예시에서 하위 폴더 역할을 하는 sample은 prefix라고 합니다 실제로 폴더 역할을 하는게 아니고 단순히 하나의 경로 역할만 하고 하나의 객체는 복수개의 prefix로 구성될 수 있어서 S3에서 객체의 경로는 아래와 같이 표현됩니다 s3://{버킷명}/{prefix}/{객체명} ex) s3://bucket1/file1.jpg s3://bucket2/prefix1/file1.jpg s3://bucket2/prefix1/prefix2..

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..