Python
1주차 - 53. Maximum Subarray [코딩 인터뷰 공부]
Leetcode 리트코드 nums array 에서 한개 이상의 숫자를 포함한 연속적인 subarray 중 가장 큰 합을 return 하시오. Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum. A subarray is a contiguous part of an array. Example 1: Input: nums = [-2,1,-3,4,-1,2,1,-5,4] Output: 6 Explanation: [4,-1,2,1] has the largest sum = 6. Example 2: Input: nums = [1] ..
2022. 7. 8. 23:18