[LeetCode] - 53. Maximum Subarray
LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '중간 (Medium)' 단계인 "Maximum Subarray" 문제입니다.--> https://leetcode.com/problems/maximum-subarray/description/ 문제 : Given an integer array nums, find the subarray with the largest sum, and return its sum.Example 1 : Input : nums = [-2,1,-3,4,-1,2,1,-5,4]Output : 6Explan..