본문 바로가기

전체 글

(94)
[LeetCode] - 2129. Capitalize the Title LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Capitalize the Title" 문제입니다.--> https://leetcode.com/problems/capitalize-the-title/description/  문제 : You are given a string title consisting of one or more words separated by a single space, where each word consists of English letters.Capitalize th..
[LeetCode] - 2169. Count Operations to Obtain Zero LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Count Operations to Obtain Zero" 문제입니다.--> https://leetcode.com/problems/count-operations-to-obtain-zero/description/  문제 : You are given two non-negative integers num1 and num2.In one operation, if num1 >= num2, you must subtract num2 from num1, ot..
[LeetCode] - 2239. Find Closest Number to Zero LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Find Closest Number to Zero" 문제입니다.--> https://leetcode.com/problems/find-closest-number-to-zero/description/  문제 : Given an integer array nums of size n, return the number with the value closest to 0 in nums.If there are multiple answers, return th..
[LeetCode] - 1796. Second Largest Digit in a String LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Remove Trailing Zeros From a String " 문제입니다.--> https://leetcode.com/problems/second-largest-digit-in-a-string/description/  문제 : Given an alphanumeric string s, return the second largest numerical digit that appears in s, or -1 if it does not exist..
[LeetCode] - 1790. Check if One String Swap can Make Strings Equal LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Check if One String Swap can Make Strings Equal" 문제입니다.--> https://leetcode.com/problems/check-if-one-string-swap-can-make-strings-equal/description/  문제 : You are given two strings s1 and s2 of equal length.A string swap is an operation where you c..
[LeetCode] - 1646. Get Maximum in Generated Array LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Get Maximum in Generated Array" 문제입니다.--> https://leetcode.com/problems/get-maximum-in-generated-array/description/  문제 : You are given an integer n.A 0-indexed integer array nums of length n + 1 is generated in the following way :nums[0] = 0nums[1]..
[LeetCode] - 1436. Destination City LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Destination City" 문제입니다.--> https://leetcode.com/problems/destination-city/description/  문제 : You are given the array paths, where paths[i] = [cityAi, cityBi] means there exists a direct path going from cityAi to cityBi. Return the destination city,..
[LeetCode] - 1252. Cells With Odd Values in a Matrix LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Cells with Odd Values in a Matrix" 문제입니다.--> https://leetcode.com/problems/cells-with-odd-values-in-a-matrix/description/  문제 : There is an m x n matrix that is initialized to all 0's.There is also a 2D array indices where each indices[i] = [ri, ci]..