분류 전체보기
-
[75 LeetCode] 28 - Longest Common SubsequenceStudy/Leetcode 2023. 5. 7. 18:44
[75 LeetCode]는 코딩테스트 연습을 위해 한 페이스북 개발자가 추천하는 75가지 알고리즘 문제를 풀어보는 시리즈이다. 블라인드 원문: https://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-75-LeetCode-Questions-to-Save-Your-Time-OaM1orEU 문제 링크: https://leetcode.com/problems/longest-common-subsequence/description/ 단순반복을 통해 구현하면 TLE가 발생한다. var longestCommonSubsequence = function(text1, text2) { const lcs = (text1, text2) => { let max = 0;..
-
[75 LeetCode] 27 - Counting BitsStudy/Leetcode 2023. 5. 7. 15:56
[75 LeetCode]는 코딩테스트 연습을 위해 한 페이스북 개발자가 추천하는 75가지 알고리즘 문제를 풀어보는 시리즈이다. 블라인드 원문: https://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-75-LeetCode-Questions-to-Save-Your-Time-OaM1orEU 문제 링크: https://leetcode.com/problems/counting-bits/description/ Counting Bits - LeetCode Can you solve this real interview question? Counting Bits - Given an integer n, return an array ans of length n +..
-
[75 LeetCode] 26 - Maximum Product SubarrayStudy/Leetcode 2023. 5. 7. 15:02
[75 LeetCode]는 코딩테스트 연습을 위해 한 페이스북 개발자가 추천하는 75가지 알고리즘 문제를 풀어보는 시리즈이다. 블라인드 원문: https://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-75-LeetCode-Questions-to-Save-Your-Time-OaM1orEU 문제 링크: https://leetcode.com/problems/maximum-product-subarray/ Maximum Product Subarray - LeetCode Can you solve this real interview question? Maximum Product Subarray - Given an integer array nums, fin..
-
[75 LeetCode] 25 - Minimum Window SubstringStudy/Leetcode 2023. 5. 7. 15:01
[75 LeetCode]는 코딩테스트 연습을 위해 한 페이스북 개발자가 추천하는 75가지 알고리즘 문제를 풀어보는 시리즈이다. 블라인드 원문: https://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-75-LeetCode-Questions-to-Save-Your-Time-OaM1orEU 문제 링크: https://leetcode.com/problems/minimum-window-substring/ Minimum Window Substring - LeetCode Can you solve this real interview question? Minimum Window Substring - Given two strings s and t of len..
-
[75 LeetCode] 24 - Spiral MatrixStudy/Leetcode 2023. 5. 7. 14:24
[75 LeetCode]는 코딩테스트 연습을 위해 한 페이스북 개발자가 추천하는 75가지 알고리즘 문제를 풀어보는 시리즈이다. 블라인드 원문: https://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-75-LeetCode-Questions-to-Save-Your-Time-OaM1orEU 문제 링크: https://leetcode.com/problems/spiral-matrix/description/ Spiral Matrix - LeetCode Can you solve this real interview question? Spiral Matrix - Given an m x n matrix, return all elements of the mat..
-
[75 LeetCode] 번외 - 이진 탐색 정리Study/Leetcode 2023. 5. 5. 19:00
https://www.wikiwand.com/en/Binary_search_algorithm Wikiwand - Binary search algorithm In computer science, binary search, also known as half-interval search, Binary search compares the target value to the middle element of the array. If they are not equal, the half in which the target cannot lie is eliminated and the search continues on the www.wikiwand.com 이진탐색 관련 문제를 풀다가, 종종 이진탐색문제를 만날 때마다 헷갈..
-
[75 LeetCode] 23 - Longest Increasing SubsequenceStudy/Leetcode 2023. 5. 5. 17:23
[75 LeetCode]는 코딩테스트 연습을 위해 한 페이스북 개발자가 추천하는 75가지 알고리즘 문제를 풀어보는 시리즈이다. 블라인드 원문: https://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-75-LeetCode-Questions-to-Save-Your-Time-OaM1orEU 문제 링크: https://leetcode.com/problems/longest-increasing-subsequence/submissions/944828649/ 역시나 dp이고, 못풀었다. 몇년전에 공부할 때 접한 적 있는 문제임에도, DP는 마땅한 풀이법이 생각나지 않으면 못풀게 된다. 가장 단순한 방식의 DP는 O(n^2)이라 사용하지 않으려했는데, 그거..
-
[75 LeetCode] 22 - Maximum SubarrayStudy/Leetcode 2023. 4. 27. 01:32
[75 LeetCode]는 코딩테스트 연습을 위해 한 페이스북 개발자가 추천하는 75가지 알고리즘 문제를 풀어보는 시리즈이다. 블라인드 원문: https://www.teamblind.com/post/New-Year-Gift---Curated-List-of-Top-75-LeetCode-Questions-to-Save-Your-Time-OaM1orEU 문제 링크: https://leetcode.com/problems/maximum-subarray/description/ Maximum Subarray - LeetCode Can you solve this real interview question? Maximum Subarray - Given an integer array nums, find the subarr..