전체 글 (94) 썸네일형 리스트형 [LeetCode] - 2418. Sort the People LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Sort the People" 문제입니다.--> https://leetcode.com/problems/sort-the-people/description/ 문제 : You are given an array of strings names, and an array heights that consists of distinct positive integers. Both arrays are of length n.For each index i, name.. [LeetCode] - 509. Fibonacci Number LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Fibonacci Number" 문제입니다.--> https://leetcode.com/problems/fibonacci-number/description/ 문제 : The Fibonacci numbers, commonly denoted F(n) form a sequence, called the Fibonacci sequence, such that each number is the sum of the two preceding ones, sta.. [LeetCode] - 344. Reverse String LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Reverse String" 문제입니다.--> https://leetcode.com/problems/reverse-string/description/ 문제 :Write a function that reverses a string. The input string is given as an array of characters s. You must do this by modifying the input array in-place with O(1) .. [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.. 이전 1 ··· 7 8 9 10 11 12 다음 목록 더보기