알고리즘/LeetCode29 [알고리즘] LeetCode - Min Stack Min Stack - LeetCode Can you solve this real interview question? Min Stack - Design a stack that supports push, pop, top, and retrieving the minimum element in constant time. Implement the MinStack class: * MinStack() initializes the stack object. * void push(int val) pushes t leetcode.com 문제 설명 push, pop, top 반환, stack에서의 최솟값 반환을 지원하는 스택을 설계해야 한다. 기능에 해당하는 로직을 구현해야 한다. 문제 해결 별도의 Nodo에 val과 push.. 2023. 8. 31. [알고리즘] LeetCode - Linked List Cycle Linked List Cycle - LeetCode Can you solve this real interview question? Linked List Cycle - Given head, the head of a linked list, determine if the linked list has a cycle in it. There is a cycle in a linked list if there is some node in the list that can be reached again by continuo leetcode.com 문제 설명 LinkedList의 head가 주어진다. 해당 LinkedList의 Cycle을 가지고 있는지 판단하고 결과값을 반환한다. 순환이 있으면 true, 없으면 false.. 2023. 8. 28. [알고리즘] LeetCode - Longest Substring Without Repeating Characters = 0) { sub = sub.substring(idx + 1); } sub += now; answer = Math.max(answer, sub.length()); } return answer; } } 결과 시간 메모리 11 ms 44.9 MB 2023. 8. 28. [알고리즘] LeetCode - Minimum Size Subarray Sum Minimum Size Subarray Sum - LeetCode Can you solve this real interview question? Minimum Size Subarray Sum - 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 subarr leetcode.com 문제 설명 정수형 배열 nums가 양의 정수로 채워져서 주어진다. nums에서 합이 target이 되는 하위 배열(연속된 수)을 찾고, 그 길이를 반환해야 한다. .. 2023. 8. 28. [알고리즘] LeetCode - Two Sum II - Input Array Is Sorted Two Sum II - Input Array Is Sorted - LeetCode Can you solve this real interview question? Two Sum II - Input Array Is Sorted - Given a 1-indexed array of integers numbers that is already sorted in non-decreasing order, find two numbers such that they add up to a specific target number. Let these two n leetcode.com 문제 설명 정수형 배열 numbers가 오름차순 정렬되어 주어진다. 두 숫자의 합인 정수형 변수 target이 주어진다. numbers에서의 두 수.. 2023. 8. 28. 이전 1 2 3 4 5 6 다음