27 lines
409 B
Cheetah
27 lines
409 B
Cheetah
|
pub fn process_part1(input: &str) -> i32 {
|
||
|
0
|
||
|
}
|
||
|
|
||
|
pub fn process_part2(input: &str) -> i32 {
|
||
|
0
|
||
|
}
|
||
|
|
||
|
#[cfg(test)]
|
||
|
mod tests {
|
||
|
use super::*;
|
||
|
|
||
|
const INPUT: &str = "{{EXAMPLE}}";
|
||
|
|
||
|
#[test]
|
||
|
fn part1() {
|
||
|
let result = process_part1(INPUT);
|
||
|
assert_eq!(result, 0);
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn part2() {
|
||
|
let result = process_part2(INPUT);
|
||
|
assert_eq!(result, 0);
|
||
|
}
|
||
|
}
|