#advent-of-code #intcode #aoc2019 #aoc

aoc19intcode

独立实现的 Advent of Code 2019 Intcode VM

4 个版本

0.2.0 2020年3月21日
0.1.2 2020年2月23日
0.1.1 2020年2月23日
0.1.0 2020年2月23日

#27#advent-of-code

MIT 许可证

10KB
216

独立实现的 Advent of Code 2019 Intcode VM

aoc19intcode

就这么多。我不知道还能告诉你什么。


lib.rs:

独立实现的 Advent of Code 2019 Intcode VM

就这么多。我不知道还能告诉你什么。

示例

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

无运行时依赖