코딩테스트
-
[75 LeetCode] 8 - Longest Substring Without Repeating CharactersStudy/Leetcode 2023. 4. 8. 17:48
[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-substring-without-repeating-characters/description/ = s.length) { return Math.max(max, iter - start); } const char = s[iter]; if (char in cache) { max = Math..
-
[75 LeetCode] 7 - Set Matrix ZeroesStudy/Leetcode 2023. 4. 8. 17:33
[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/set-matrix-zeroes/ Set Matrix Zeroes - LeetCode Can you solve this real interview question? Set Matrix Zeroes - Given an m x n integer matrix matrix, if an element i..
-
[75 LeetCode] 6 - Reverse Linked ListStudy/Leetcode 2023. 4. 8. 17:25
[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/reverse-linked-list/ Reverse Linked List - LeetCode Can you solve this real interview question? Reverse Linked List - Given the head of a singly linked list, reverse..
-
[75 LeetCode] 5 - Insert IntervalStudy/Leetcode 2023. 4. 5. 23:27
[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/insert-interval/description/ Insert Interval - LeetCode Can you solve this real interview question? Insert Interval - You are given an array of non-overlapping inter..
-
[75 LeetCode] 4 - Clone GraphStudy/Leetcode 2023. 4. 5. 00:26
[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/clone-graph/description/ Clone Graph - LeetCode Can you solve this real interview question? Clone Graph - Given a reference of a node in a connected [https://en.wiki..
-
[75 LeetCode] 3 - Climbing stairsStudy/Leetcode 2023. 4. 4. 22:47
[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/climbing-stairs/ Climbing Stairs - LeetCode Can you solve this real interview question? Climbing Stairs - You are climbing a staircase. It takes n steps to reach the..
-
[75 LeetCode] 2 - Sum of Two IntegersStudy/Leetcode 2023. 4. 3. 02:17
[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/sum-of-two-integers/description/ Sum of Two Integers - LeetCode Can you solve this real interview question? Sum of Two Integers - Given two integers a and b, return ..