-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday1challenge2.ps1
63 lines (56 loc) · 1.63 KB
/
day1challenge2.ps1
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
$global:Index = 0 #A global variable is defined to use as the increment for the index of the arrays
Function TextToPSList {
$global:fuelReq = ,@() # A new global multidimensional array is made. Fuel Requirement.
$global:fuelReq[$global:Index] += get-content -path .\day1input.txt #Using get-content, the specified file is parsed and lines are sent to Row 0
StepCheck # StepCheck is called.
}
Function ArrayController {
foreach($mass in $global:fuelReq[$global:Index]) {
$m = ($mass / 3) - 2
$m = [math]::floor($m)
if($m -le 0) {
$global:fuelReq[$global:Index + 1] += 0
}
else {
$global:fuelReq[$global:Index + 1] += $m
}
}
$global:Index = $global:Index + 1
StepCheck
}
Function StepCheck {
[int]$global:rowTotalReq = 0
foreach($mass in $global:fuelReq[$global:Index]) { # for each value in current row:
$global:rowTotalReq = $global:rowTotalReq + $mass #Add up the entire row
}
if($global:rowTotalReq -gt 0) {
$global:fuelReq += ,@()
write-host "Step Check $global:Index complete. Row Total is $global:rowTotalReq"
ArrayController
}
elseif($global:rowTotalReq -eq 0) {
Calculate
}
}
Function Calculate {
$total = @()
$counter = 1
while($counter -eq 1){
if($global:Index -gt 0) {
[int]$TotalReq = 0
foreach($mass in $global:fuelReq[$global:Index]) {
$TotalReq = $TotalReq + $mass
}
$total += $TotalReq
$global:Index = $global:Index - 1
}
elseif($global:Index -eq 0) {
foreach($num in $total) {
[int]$grandTotal = $grandTotal + $num
}
write-host "The final total is $grandTotal"
$counter = 0
}
}
}
TextToPSList