| Crates.io | aoc19intcode |
| lib.rs | aoc19intcode |
| version | 0.3.2 |
| created_at | 2020-02-23 11:45:46.156998+00 |
| updated_at | 2024-12-19 09:06:35.328619+00 |
| description | A standalone Advent of Code 2019 Intcode VM implementation |
| homepage | |
| repository | https://gitlab.com/betseg/aoc/-/tree/main/aoc19/intcode |
| max_upload_size | |
| id | 211720 |
| size | 12,026 |
That's it. IDK what else to tell ya.
use aoc19intcode::IntcodeVM;
assert_eq!(
IntcodeVM::from_prog(&[2, 4, 4, 5, 99, 0])
.run_prog()
.unwrap()[5],
9801
);