이 글은 강의 내용을 토대로 작성하였습니다.
HTTP Status 301
요청한 리소스가 새로운 위치로 영구적으로 이동되었음을 뜻함
브라우저가 캐시 할 수 있음
HTTP Status 302
요청한 리소스가 일시적으로 다른 위치에 있음을 뜻함
매번 서버에 요청을 해야 함
이 글은 강의 내용을 토대로 작성하였습니다.
면접관은 기술적인 전문 지식만을 요구 X
문제 접근 방식 + 협업 방식도 중요시 여김
ex) 피드백을 받아들이는지?
이 글은 강의 내용을 토대로 작성하였습니다.
일관성 (Consistency)
= Write 이후 Read 시 바로 값을 조회할 수 있느냐?
가용성 (Availability)
= 단일 고장 점(single point of failure, SPOF)이 존재하는가?
분할 허용성 (Partition Tolerance)
= 수평 스케일링이 쉽게 가능한가?
Given an array nums of n integers where nums[i] is in the range [1, n], return an array of all the integers in the range [1, n] that do not appear in nums.
Follow up: Could you do it without extra space and in O(n) runtime? You may assume the returned list does not count as extra space.
Given an array of positive integers nums and a positive integer target, return the minimal length of a subarray whose sum is greater than or equal to target. If there is no such subarray, return 0 instead.