aoc19intcode

Crates.ioaoc19intcode
lib.rsaoc19intcode
version
sourcesrc
created_at2020-02-23 11:45:46.156998
updated_at2024-12-19 09:06:35.328619
descriptionA standalone Advent of Code 2019 Intcode VM implementation
homepage
repositoryhttps://gitlab.com/betseg/aoc/-/tree/main/aoc19/intcode
max_upload_size
id211720
Cargo.toml error:TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
(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: 0

cargo fmt