생각의 표현들

LeetCode

[LeetCode] 3. Longest Substring Without Repeating Characters

Longest Substring Without Repeating Characters - LeetCodeCan you solve this real interview question? Longest Substring Without Repeating Characters - Given a string s, find the length of the longest substring without repeating characters.   Example 1: Input: s = "abcabcbb" Output: 3 Explanation: The answer is "leetcode.com int 배열이 주어지면 가장 긴 substring을 찾는 문제입니다.단, substring안에 같은 letter이 들어가면 안됩니다..

LeetCode

[LeetCode] 209. 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 양의 정수 배열이 주어지면 배열의 조합의 합이 target과 같아야 하고 target과 같은 조합중 가장 작은 조합의 길이를 반환하는 문제입니다. Example 1..

LeetCode

[LeetCode] 167. 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 int 배열 numbers와 tartget 숫자가 주어지면 numbers안에 요소 2개를 더해 target이 되는 인덱스들을 반환하는 문제입니다. ..

LeetCode

[LeetCode] 125. Valid Palindrome

https://leetcode.com/problems/valid-palindrome/description/?envType=study-plan-v2&envId=top-interview-150 Valid Palindrome - LeetCode Can you solve this real interview question? Valid Palindrome - A phrase is a palindrome if, after converting all uppercase letters into lowercase letters and removing all non-alphanumeric characters, it reads the same forward and backward. Alphanumeric cha leetcod..

Sol b
'분류 전체보기' 카테고리의 글 목록 (20 Page)