Is Subsequence - 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 문자열 s가 문자열 t의 최장 공통부분 문자열인지 찾는 문제다. 관련 개념을 가장 잘 설명한 블로그 링크. [알고리즘] 그림으로 알아보는 LCS 알고리즘 - Longest Common Substring와 Longest Common Subsequence LCS는 주로 최장 공통 부분수열(Longest Common Subsequence)을 말합니다만, 최장 공통 문자열(Longest Com..
https://www.joinc.co.kr/w/man/12/airbnbDesign Airbnb System design 분석 예약 서비스의 작동 프로세스 www.joinc.co.kr https://www.joinc.co.kr/w/man/12/uberSystemDesign Uber System Design 분석 Pre-Trip 시퀀스 다이어그램 www.joinc.co.kr https://medium.com/29cm/%EC%9C%A0%EC%A0%80-%EC%A3%BC%EB%AC%B8-%EC%B7%A8%EC%86%8C-%EA%B8%B0%EB%8A%A5-java-%EC%A0%84%ED%99%98%EA%B8%B0-d218e5ecb874 유저 주문 취소 기능 Java 전환기 29CM 백엔드팀은 Python + Dj..
What is using Port 5000 on macOS Monterey? I’ve been fiddling a bit with Wails recently and I gave the unreleased v2 alpha a try. Out of the box, it binds to Port 5000 and I was surprised to receive a 403 Forbidden. Definitely not what I expected. We can use the lsof utility to figure out what’ utf9k.net 요약하면 새로 추가된 기능 중 하나인 airplay to mac을 위한 listener가 디폴트로 켜져 있고, 그 포트가 로컬 5000번 포트를 점유하고 있다는 내용..
3Sum Closest - 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 정수가 담긴 배열 nums, 특정한 정수 target이 주어진다. nums의 정수 3개를 골라서 더한 합이 target과 가장 가깝게 되는 정수 3개의 합을 반환하는 문제다. 예시 Input: nums = [-1,2,1,-4], target = 1 Output: 2 Explanation: The sum that is closest to the target is 2. (-1 + 2 + 1 =..
First Missing Positive - 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 정수로 구성된 배열이 주어진다. 이 정수 배열에 존재하지 않는 가장 작은 양의 정수를 반환하는 문제다. 단 시간 복잡도는 O(N)으로 제한하고, 추가 공간은 상수 레벨까지만 허용한다. 예시 1 Input: nums = [1,2,0] Output: 3 2 Input: nums = [3,4,-1,1] Output: 2 3 Input: nums = [7,8,9,11,12] Ou..
Java Compiler Optimization for String Concatenation String concatenation was a costly affair in the early Sun Java versions(till JDK1.4 to be precise). Even though later JDK’s brought the… medium.com