day1 and 2 done & setup for day3
This commit is contained in:
parent
5053b3cbbd
commit
be09a5df2c
26 changed files with 2520 additions and 2 deletions
8
2021/day3/.idea/.gitignore
generated
vendored
Normal file
8
2021/day3/.idea/.gitignore
generated
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
5
2021/day3/.idea/codeStyles/codeStyleConfig.xml
generated
Normal file
5
2021/day3/.idea/codeStyles/codeStyleConfig.xml
generated
Normal file
|
@ -0,0 +1,5 @@
|
|||
<component name="ProjectCodeStyleConfiguration">
|
||||
<state>
|
||||
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
|
||||
</state>
|
||||
</component>
|
9
2021/day3/.idea/day3.iml
generated
Normal file
9
2021/day3/.idea/day3.iml
generated
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="WEB_MODULE" version="4">
|
||||
<component name="Go" enabled="true" />
|
||||
<component name="NewModuleRootManager">
|
||||
<content url="file://$MODULE_DIR$" />
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
8
2021/day3/.idea/modules.xml
generated
Normal file
8
2021/day3/.idea/modules.xml
generated
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/day3.iml" filepath="$PROJECT_DIR$/.idea/day3.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
6
2021/day3/.idea/vcs.xml
generated
Normal file
6
2021/day3/.idea/vcs.xml
generated
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$/../.." vcs="Git" />
|
||||
</component>
|
||||
</project>
|
1000
2021/day3/data
Normal file
1000
2021/day3/data
Normal file
File diff suppressed because it is too large
Load diff
3
2021/day3/go.mod
Normal file
3
2021/day3/go.mod
Normal file
|
@ -0,0 +1,3 @@
|
|||
module day3
|
||||
|
||||
go 1.21
|
11
2021/day3/main.go
Normal file
11
2021/day3/main.go
Normal file
|
@ -0,0 +1,11 @@
|
|||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("GoFast!")
|
||||
}
|
||||
|
||||
func Part1() int {
|
||||
return 0
|
||||
}
|
11
2021/day3/main_test.go
Normal file
11
2021/day3/main_test.go
Normal file
|
@ -0,0 +1,11 @@
|
|||
package main
|
||||
|
||||
import "testing"
|
||||
|
||||
func TestPart1(t *testing.T) {
|
||||
const expected = 198
|
||||
result := Part1()
|
||||
if result != expected {
|
||||
t.Fatalf("Expected: %d Result: %d", expected, result)
|
||||
}
|
||||
}
|
38
2021/day3/task.txt
Normal file
38
2021/day3/task.txt
Normal file
|
@ -0,0 +1,38 @@
|
|||
--- Day 3: Binary Diagnostic ---
|
||||
|
||||
The submarine has been making some odd creaking noises, so you ask it to produce a diagnostic report just in case.
|
||||
|
||||
The diagnostic report (your puzzle input) consists of a list of binary numbers which, when decoded properly, can tell you many useful things about the conditions of the submarine. The first parameter to check is the power consumption.
|
||||
|
||||
You need to use the binary numbers in the diagnostic report to generate two new binary numbers (called the gamma rate and the epsilon rate). The power consumption can then be found by multiplying the gamma rate by the epsilon rate.
|
||||
|
||||
Each bit in the gamma rate can be determined by finding the most common bit in the corresponding position of all numbers in the diagnostic report. For example, given the following diagnostic report:
|
||||
|
||||
00100
|
||||
11110
|
||||
10110
|
||||
10111
|
||||
10101
|
||||
01111
|
||||
00111
|
||||
11100
|
||||
10000
|
||||
11001
|
||||
00010
|
||||
01010
|
||||
|
||||
Considering only the first bit of each number, there are five 0 bits and seven 1 bits. Since the most common bit is 1, the first bit of the gamma rate is 1.
|
||||
|
||||
The most common second bit of the numbers in the diagnostic report is 0, so the second bit of the gamma rate is 0.
|
||||
|
||||
The most common value of the third, fourth, and fifth bits are 1, 1, and 0, respectively, and so the final three bits of the gamma rate are 110.
|
||||
|
||||
So, the gamma rate is the binary number 10110, or 22 in decimal.
|
||||
|
||||
The epsilon rate is calculated in a similar way; rather than use the most common bit, the least common bit from each position is used. So, the epsilon rate is 01001, or 9 in decimal. Multiplying the gamma rate (22) by the epsilon rate (9) produces the power consumption, 198.
|
||||
|
||||
Use the binary numbers in your diagnostic report to calculate the gamma rate and epsilon rate, then multiply them together. What is the power consumption of the submarine? (Be sure to represent your answer in decimal, not binary.)
|
||||
|
||||
To begin, get your puzzle input.
|
||||
|
||||
Answer:
|
12
2021/day3/test-data
Normal file
12
2021/day3/test-data
Normal file
|
@ -0,0 +1,12 @@
|
|||
00100
|
||||
11110
|
||||
10110
|
||||
10111
|
||||
10101
|
||||
01111
|
||||
00111
|
||||
11100
|
||||
10000
|
||||
11001
|
||||
00010
|
||||
01010
|
Loading…
Add table
Add a link
Reference in a new issue