aoc19intcode

Crates.ioaoc19intcode
lib.rsaoc19intcode
version0.3.2
created_at2020-02-23 11:45:46.156998+00
updated_at2024-12-19 09:06:35.328619+00
descriptionA standalone Advent of Code 2019 Intcode VM implementation
homepage
repositoryhttps://gitlab.com/betseg/aoc/-/tree/main/aoc19/intcode
max_upload_size
id211720
size12,026
(betseg)

documentation

README

A standalone Advent of Code 2019 Intcode VM implementation

aoc19intcode

That's it. IDK what else to tell ya.

Examples

use aoc19intcode::IntcodeVM;
assert_eq!(
    IntcodeVM::from_prog(&[2, 4, 4, 5, 99, 0])
        .run_prog()
        .unwrap()[5],
    9801
);
Commit count: 176

cargo fmt