leetcode 1143
-
[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;..