LeetCode/Array
121. Best Time to Buy and Sell Stock ✨
2025.12.04
🎉 문제You are given an array prices where prices[i] is the price of a given stock on the ith day. You want to maximize your profit by choosing a single day to buy one stock and choosing a different day in the future to sell that stock. Return the maximum profit you can achieve from this transaction. If you cannot achieve any profit, return 0.Example 1: Input: prices = [7,1,5,3,6,4] Output: 5 Expl..
LeetCode/Array
88. Merge Sorted Array
2025.11.15
Merge Sorted ArrayYou are given two integer arrays nums1 and nums2, sorted in non-decreasing order, and two integers m and n, representing the number of elements in nums1 and nums2 respectively. Merge nums1 and nums2 into a single array sorted in non-decreasing order. The final sorted array should not be returned by the function, but instead be stored inside the array nums1. To accommodate this,..