본문 바로가기

LeetCode

(91)
[LeetCode] - 125. Valid Palindrome LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Valid Palindrome" 문제입니다.--> https://leetcode.com/problems/valid-palindrome/description/ 문제 : A phrase is a palindrome if, after converting all uppercase letters into lowercase letters and removing all non-alphanumeric characters, it reads the same f..
[LeetCode] - 217. Contains Duplicate LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Contains Duplicate" 문제입니다.--> https://leetcode.com/problems/contains-duplicate/description/ 문제 :Given an integer array nums, return true if any value appears at least twice in the array, and return false if every element is distinct.Example 1 : Inpu..
[LeetCode] - 283. Move Zeroes LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Move Zeroes" 문제입니다.--> https://leetcode.com/problems/move-zeroes/description/ 문제 : Given an integer array nums, move all 0's to the end of it while maintaining the relative order of the non-zero elements. Note that you must do this in-place without ..
[LeetCode] - 412. Fizz Buzz LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Fizz Buzz" 문제입니다.--> https://leetcode.com/problems/fizz-buzz/description/ 문제 : Given an integer n, return a string array answer (1-indexed) where: answer[i] == "FizzBuzz" if i is divisible by 3 and 5. answer[i] == "Fizz" if i is divisible by 3.answe..
[LeetCode] - 709. To Lower Case LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "To Lower Case" 문제입니다.--> https://leetcode.com/problems/to-lower-case/description/ 문제 : Given a string s, return the string after replacing every uppercase letter with the same lowercase letter.Example 1 :Input : s = "Hello"Output : "hello" Example 2..
[LeetCode] - 2235. Add Two Integers LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Add Two Integers" 문제입니다.--> https://leetcode.com/problems/add-two-integers/description/ 문제 : Given two integers num1 and num2, return the sum of the two integers.Example 1:Input : num1 = 12, num2 = 5Output : 17Explanation : num1 is 12, num2 is 5, an..
[LeetCode] - 977. Squares of a Sorted Array LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Squares of a Sorted Array" 문제입니다.--> https://leetcode.com/problems/squares-of-a-sorted-array/description/ 문제 : Given an integer array nums sorted in non-decreasing order, return an array of the squares of each number sorted in non-decreasing order.E..
[LeetCode] - 461. Hamming Distance LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Hamming Distance" 문제입니다.--> https://leetcode.com/problems/hamming-distance/description/ 문제 : The Hamming distance between two integers is the number of positions at which the corresponding bits are different. Given two integers x and y, return the H..