코딩테스트/LeetCode
-
[LeetCode] Palindrome Number코딩테스트/LeetCode 2022. 1. 4. 22:16
문제 Given an integer x, return true if x is palindrome integer. An integer is a palindrome when it reads the same backward as forward. For example, 121 is a palindrome while 123 is not. 정수 x가 주어지면 x가 회문 정수이면 true를 반환합니다. 정수는 정방향과 역방향이 같을 때 회문입니다. 예를 들어, 121은 회문이지만 123은 그렇지 않습니다. Example Example 1: Input: x = 121 Output: true Explanation: 121 reads as 121 from left to right and from right to left...
-
[LeetCode] Longest Substring Without Repeating Characters코딩테스트/LeetCode 2022. 1. 3. 22:05
문제 Given a string s, find the length of the longest substring without repeating characters. 문자열 s가 주어지면 문자를 반복하지 않고 가장 긴 부분 문자열의 길이를 찾습니다. => 중복되지 않고 가장 긴 문자열의 길이를 구해라 Example Example 1: Input: s = "abcabcbb" Output: 3 Explanation: The answer is "abc", with the length of 3. Example 2: Input: s = "bbbbb" Output: 1 Explanation: The answer is "b", with the length of 1. Example 3: Input: s = "pwwkew..
-
[LeetCode] Add Two Numbers코딩테스트/LeetCode 2022. 1. 2. 17:13
문제 You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes contains a single digit. Add the two numbers and return the sum as a linked list. You may assume the two numbers do not contain any leading zero, except the number 0 itself. 두 개의 음이 아닌 정수를 나타내는 비어 있지 않는 linked-list가 주어진다. 숫자는 역순으로 저장되고 각 노드에는 단일 숫자가 ..
-
[LeetCode] Two Sum코딩테스트/LeetCode 2022. 1. 1. 18:02
문제 Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same element twice. You can return the answer in any order. 정수 배열 nums와 정수 대상이 주어지면 두 숫자의 인덱스를 반환하여 대상에 합산되도록 한다. 각 입력에 정확히 하나의 해답이 있다고 가정하고 동일한 요소를 두 번 사용하지 않을 수 있다. 어떤 순서로든 답변을 반환할 수 ..