1 | package com.adventofcode.day05 | |
2 | ||
3 | class ColumnBinarySpacePartition : BinarySpace(0,7) { | |
4 | ||
5 | override fun toString(): String { | |
6 |
1
1. toString : replaced return value with "" for com/adventofcode/day05/ColumnBinarySpacePartition::toString → KILLED |
return "Column Space : "+ super.toString() |
7 | } | |
8 | } | |
9 | ||
Mutations | ||
6 |
1.1 |