Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Typo fix #28

Merged
merged 1 commit into from
Jan 16, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public int maxSubArray(int[] nums) {
int runningWindowSum = 0;

/*
We improve be noticing we are performing duplicate
We improve by noticing we are performing duplicate
work. When we know the sum of the subarray from
0 to right - 1...why would we recompute the sum
for the subarray from 0 to right?
Expand Down