-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask_2_part_1.ps1
56 lines (47 loc) · 1.25 KB
/
task_2_part_1.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
#------------------------------Notes------------------------------------#
# Task 2, Part 1
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
$folderRoot = Split-Path $MyInvocation.MyCommand.Source
$taskInput = Get-Content -Path (Join-Path $folderRoot "inputs\input_2.txt")
$scoreLost = 0
$scoreDraw = 3
$scoreWin = 6
$moveList = @(
[PSCustomObject] @{
name = 'rock'
me = 'X'
opp = 'A'
score = 1
win = 'C'
},
[PSCustomObject] @{
name = 'paper'
me = 'Y'
opp = 'B'
score = 2
win = 'A'
},
[PSCustomObject] @{
name = 'scissors'
me = 'Z'
opp = 'C'
score = 3
win = 'B'
}
)
$perfectStrat = 0
foreach($line in ($taskInput -split "`r`n")) {
$oppMove = $moveList | where {$_.opp -eq $line.Split(' ')[0]}
$meMove = $moveList | where {$_.me -eq $line.Split(' ')[1]}
$perfectStrat += $meMove.score
if($meMove.me -eq $oppMove.me) {
$perfectStrat += $scoreDraw
} else {
if($meMove.win -eq $oppMove.opp) {
$perfectStrat += $scoreWin
} else {
$perfectStrat += $scoreLost
}
}
}
Write-Host ('Task 2, Part 1: {0}' -f $perfectStrat)