This repository has been archived on 2023-12-13. You can view files and clone it, but cannot push or open issues or pull requests.
advent-of-code-2022/day11/src/main.rs

23 lines
318 B
Rust

#[derive(Debug)]
struct Monkey {
items: Vec<usize>,
}
#[derive(Debug)]
struct MonkeyGame {
monkeys: Vec<Monkey>,
}
fn main() {
let file_str = include_str!("input.txt");
}
#[cfg(test)]
mod tests {
use super::*;
fn get_test_data() -> &'static str {
include_str!("test-input.txt")
}
}