-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFIndPivotIndex.go
126 lines (93 loc) · 2.77 KB
/
FIndPivotIndex.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
Given an array of integers nums, write a method that returns the "pivot" index of this array.
We define the pivot index as the index where the sum of all the numbers to the left of the index is equal to the sum of all the numbers to the right of the index.
If no such index exists, we should return -1. If there are multiple pivot indexes, you should return the left-most pivot index.
Example 1:
Input: nums = [1,7,3,6,5,6]
Output: 3
Explanation:
The sum of the numbers to the left of index 3 (nums[3] = 6) is equal to the sum of numbers to the right of index 3.
Also, 3 is the first index where this occurs.
Example 2:
Input: nums = [1,2,3]
Output: -1
Explanation:
There is no index that satisfies the conditions in the problem statement.
Constraints:
The length of nums will be in the range [0, 10000].
Each element nums[i] will be an integer in the range [-1000, 1000].
*/
package main
import (
"log"
)
func main() {
tests := [][]int{{1,7,3,6,5,6}, {1,2,3}, {-1,-1,-1,0,1,1}}
for _, test := range tests {
log.Printf("pivotIndex(%v) == %d\n", test, pivotIndex2(test))
}
}
func pivotIndex2(nums []int) int {
// if the total of all elements in th array is X, and the total of all elements upto an index i is y,
// then the total of elemnts to the right of i is X-arr[i]-y
// calculate the total of all elements in the collection
fullTotal := 0
for _, n := range nums {
fullTotal += n
}
// keep running total of all elements to the left of nums[i]
leftTotal := 0
for i := 0; i < len(nums); i++ {
rightTotal := fullTotal - nums[i] - leftTotal
if rightTotal == leftTotal {
return i
} else {
// update left total
leftTotal += nums[i]
}
}
// no idex with same element total to the left and to the right found in nums
return -1
}
func pivotIndex(nums []int) int {
// totals from left
totalsLeft := []int{}
total := 0
for i := 0; i < len(nums); i++ {
total += nums[i]
totalsLeft = append(totalsLeft, total)
}
log.Printf("pivotIndex(): totalsLeft: %v\n", totalsLeft)
// totals from right
totalsRight := []int{}
total = 0
for i := len(nums)-1; i >= 0; i-- {
total += nums[i]
totalsRight = append(totalsRight, total)
}
log.Printf("pivotIndex(): totalsRight: %v\n", totalsRight)
for i := 0; i < len(totalsLeft); i++ {
leftTot := 0
if i-1 >= 0 {
leftTot = totalsLeft[i-1]
rightTot := 0
if (len(totalsRight)-(i+2)) >= 0 {
rightTot = totalsRight[len(totalsRight)-(i+2)]
if leftTot == rightTot {
return i
}
}
}
// rightTot := 0
// if i+1 < len(totalsRight) {
// rightTot = totalsRight[i+1]
// }
// if (len(totalsRight)-(i+2)) >= 0 {
// rightTot = totalsRight[len(totalsRight)-(i+2)]
// }
// if leftTot == rightTot {
// return i
// }
}
return -1
}