i really don't know what's going wrong here

This commit is contained in:
mtrx 2024-12-08 00:04:07 +01:00
parent 3f33f23c96
commit a4d4dc2b23

View file

@ -9,7 +9,7 @@ type Direction = "up" | "right" | "down" | "left"
class DaySix implements Solvable {
input: string[][] = readInput('06').split('\n').map(col => col.split(''))
map = this.input
visitedLoc: Map<[number, number], null> = new Map()
visitedLoc: Map<string, null> = new Map()
// assigned in part1
startingPosition: [number, number] = [0, 0]
@ -44,9 +44,9 @@ class DaySix implements Solvable {
walk = (x: number, y: number, direction: Direction): [boolean, number, number, Direction] => {
const nextStepInBounds = {
up: y >= 1,
down: y <= this.map.length,
down: y < this.map.length,
left: x >= 1,
right: x <= this.map[0].length,
right: x < this.map[0].length,
}
// if oob, return true
@ -66,17 +66,19 @@ class DaySix implements Solvable {
}
// path [y, x][]
visualizePath = (path: [number, number][]): string => {
visualizePath = (path: string[]): string => {
const width = this.map[0].length
const screenMat: string[][] = []
for (let i = 0; i < width; i++) screenMat.push(this.map[i].slice())
for (const [y, x] of path) {
for (const loc of path) {
const [y, x]: number[] = loc.split(',').map(coord => Number.parseInt(coord))
screenMat[y][x] = 'X'
}
const screen: string = screenMat.map((line: string[]) => line.join('')).join('\n')
return screen
}
public async part1(): Promise<Solvable> {
// find starting position
this.input.forEach((line, y) => line.forEach((char, x) => { if (char === '^') this.startingPosition = [y, x] }))
@ -87,13 +89,13 @@ class DaySix implements Solvable {
// let i = 0
while (!outOfBounds) {
[outOfBounds, x, y, direction] = this.walk(x, y, direction)
this.visitedLoc.set([y, x], null)
this.visitedLoc.set(y + ',' + x, null)
// console animation thingy
// if (i % 10 === 0) {
// const screen = this.visualizePath(this.visitedLoc.keys().toArray())
// console.log(screen)
// await delay(100)
// await delay(200)
// }
// i++
}
@ -101,7 +103,10 @@ class DaySix implements Solvable {
const path = this.visitedLoc.keys().toArray()
const result: number = path.length
console.log(this.visualizePath(path))
console.log(path)
const allDistinct = path.filter((loc: string) => path.indexOf(loc) !== path.lastIndexOf(loc)).length === 0
console.log(allDistinct ? 'path values distinct' : 'path values not distinct')
console.log(result)
return new Promise(() => this)