diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-24 18:32:55 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-24 18:32:55 +0200 |
commit | faa82f0a6004026c94a6415baf5e138b48dc1629 (patch) | |
tree | ead573bf9ec72a74569b79724c732c17dd9d0fb3 /input | |
parent | afc66d3013b7d47c6c22d6a99809bc3e7d1ff0dc (diff) |
implement weird dijkstra
Diffstat (limited to 'input')
-rw-r--r-- | input/test.txt | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/input/test.txt b/input/test.txt new file mode 100644 index 0000000..744a62a --- /dev/null +++ b/input/test.txt @@ -0,0 +1,25 @@ +rows=18,cols=32 +letter,rgb,weight +Y,[255,255,0],1 +B,[0,0,255],4 +R,[255,0,0],10 +G,[195,195,195],2 + +________________________________ +__RRRRRR______________________R_ +__RRRRRBBBBBBBBBBBBBBBBBB_____R_ +__RRRRRBBBBBBBGGBBBBBBBBB_____R_ +__RRRRRR______GG______________R_ +__RRRRRR______GG______________R_ +______________GG______________R_ +_________Y____GG______________R_ +_________Y____GG______________R_ +_________Y____GG______________R_ +_________Y____GG______________R_ +_________Y____GG______________R_ +__BBBBBBBBBBBBBBBBBBBBBB______R_ +_________Y____GG______________R_ +_________Y____GG______________R_ +______________GG______________R_ +________________________________ +________________________________ |