본문 바로가기

전체 글

(94)
[LeetCode] - 2413. Smallest Even Multiple LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Smallest Even Multiple" 문제입니다.--> https://leetcode.com/problems/smallest-even-multiple/description/  문제 :Given a positive integer n, return the smallest positive integer that is a multiple of both 2 and n.Example 1 : Input : n = 5Output : 10Explanat..
[LeetCode] - 2264. Largest 3 Same Digit Number in String LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Largest 3 Same Digit Number in String" 문제입니다.--> https://leetcode.com/problems/largest-3-same-digit-number-in-string/description/  문제 : You are given a string num representing a large integer. An integer is good if it meets the following conditions ..
[LeetCode] - 2255. Count Prefixes of a Given String LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Count Prefixes of a Given String" 문제입니다.--> https://leetcode.com/problems/count-prefixes-of-a-given-string/description/  문제 : You are given a string array words and a string s, where words[i] and s comprise only of lowercase English letters.Return t..
[LeetCode] - 2185. Counting Words With a Given Prefix LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Counting Words With a Given Prefix" 문제입니다.--> https://leetcode.com/problems/counting-words-with-a-given-prefix/description/  문제 : You are given an array of strings words and a string pref. Return the number of strings in words that contain pref as a..
[LeetCode] - 1903. Largest Odd Number in String LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Largest Odd Number in String" 문제입니다.--> https://leetcode.com/problems/largest-odd-number-in-string/description/  문제 : You are given a string num, representing a large integer.Return the largest-valued odd integer (as a string) that is a non-empty su..
[LeetCode] - 1920. Build Array from Permutation LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Build Array from Permutation" 문제입니다.--> https://leetcode.com/problems/build-array-from-permutation/description/  문제 : Given a zero-based permutation nums (0-indexed), build an array ans of the same length where ans[i] = nums[nums[i]] for each 0 A ze..
[LeetCode] - 2351. First Letter to Appear Twice LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "First Letter to Appear Twice" 문제입니다.--> https://leetcode.com/problems/first-letter-to-appear-twice/description/  문제 : Given a string s consisting of lowercase English letters, return the first letter to appear twice.Note :A letter a appears twice be..
[LeetCode] - 1837. Sum of Digits in Base K LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Sum of Digits in Base K" 문제입니다.--> https://leetcode.com/problems/sum-of-digits-in-base-k/description/ 문제 : Given an integer n (in base 10) and a base k, return the sum of the digits of n after converting n from base 10 to base k. After converting, e..