Skip to content

Commit f540144

Browse files
committed
Day 3 Part 2
1 parent e2c40c4 commit f540144

File tree

12 files changed

+1195
-62
lines changed

12 files changed

+1195
-62
lines changed

Day 1/Part 1/src/Task.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
fun measurementIncreases(measurements: Array<Int>): Int {
2-
return 0 // replace with the result of your solution
2+
return -1 // replace with the result of your solution
33
}

Day 1/Part 1/test/Tests.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import org.junit.Assert
22
import org.junit.Test
33

4-
class Test {
4+
class Day1Part1Test {
55

66
@Test
77
fun testInput01() {

Day 1/Part 2/test/Tests.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import org.junit.Assert
22
import org.junit.Test
33

4-
class Test {
4+
class Day1Part2Test {
55

66
@Test
77
fun testInput01() {

Day 2/Part 1/test/Tests.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import org.junit.Assert
22
import org.junit.Test
33

4-
class Test {
4+
class Day2Part1Test {
55

66
@Test
77
fun testInput01() {

Day 2/Part 2/test/Tests.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import org.junit.Assert
22
import org.junit.Test
33

4-
class Test {
4+
class Day2Part2Test {
55

66
@Test
77
fun testInput01() {

Day 3/Part 1/test/Tests.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import org.junit.Assert
22
import org.junit.Test
33

4-
class Test {
4+
class Day3Part1Test {
55

66
@Test
77
fun testInput01() {

Day 3/Part 2/src/Task.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
fun doSomething(commands: Array<String>): Int {
1+
fun decodeLifeSupportRating(diagnosticReport: Array<String>): Int {
22
return -1 // replace with the result of your solution
33
}

0 commit comments

Comments
 (0)