fix: reordering and fix of small errors

This commit is contained in:
anebz 2019-09-19 09:30:43 +02:00
parent b7cba109ed
commit 6280172289
5 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@ class Node {
int data;
public Node(int d){
data = d;
this.data = d;
}
void appendToTail(int d){

View File

@ -1,8 +1,8 @@
# 16.8. Contiguous sequence or Maximum subarray problem
## Given an array of integers, both negative and positive, find the contiguous sequence with the largest sum. Return the sum
> Given an array of integers, both negative and positive, find the contiguous sequence with the largest sum. Return the sum
> example:
Example:
```bash
nums = [2, -8, 3, -2, 4, -10]