feat: remove tests from .gitignore
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
pub fn part_one(input: &str) -> Option<u32> {
|
||||
let count = input.matches('(').count() - input.matches(')').count();
|
||||
Some(count.try_into().unwrap())
|
||||
Some(count as u32)
|
||||
}
|
||||
pub fn part_two(input: &str) -> Option<u32> {
|
||||
let mut floor = 0;
|
||||
for (idx, char) in input.chars().enumerate() {
|
||||
match char {
|
||||
for (idx, c) in input.trim().chars().enumerate() {
|
||||
match c {
|
||||
'(' => floor += 1,
|
||||
')' => floor -= 1,
|
||||
_ => panic!("oops"),
|
||||
_ => panic!("oops {}", c),
|
||||
};
|
||||
|
||||
if floor < 0 {
|
||||
@@ -27,14 +27,12 @@ mod tests {
|
||||
use super::*;
|
||||
#[test]
|
||||
fn test_part_one() {
|
||||
// let input = aoc::read_file("test_inputs", 1);
|
||||
let input = "(()(()(";
|
||||
let input = aoc::read_file("test_inputs", 1);
|
||||
assert_eq!(part_one(&input), Some(3));
|
||||
}
|
||||
#[test]
|
||||
fn test_part_two() {
|
||||
// let input = aoc::read_file("test_inputs", 1);
|
||||
let input = "()())";
|
||||
assert_eq!(part_two(&input), Some(5));
|
||||
let input = aoc::read_file("test_inputs", 1);
|
||||
assert_eq!(part_two(&input), Some(11));
|
||||
}
|
||||
}
|
||||
|
@@ -42,14 +42,12 @@ mod tests {
|
||||
use super::*;
|
||||
#[test]
|
||||
fn test_part_one() {
|
||||
// let input = aoc::read_file("test_inputs", 2);
|
||||
let input = "2x3x4";
|
||||
let input = aoc::read_file("test_inputs", 2);
|
||||
assert_eq!(part_one(&input), Some(58));
|
||||
}
|
||||
#[test]
|
||||
fn test_part_two() {
|
||||
// let input = aoc::read_file("test_inputs", 2);
|
||||
let input = "2x3x4";
|
||||
let input = aoc::read_file("test_inputs", 2);
|
||||
assert_eq!(part_two(&input), Some(34));
|
||||
}
|
||||
}
|
||||
|
@@ -53,14 +53,12 @@ mod tests {
|
||||
use super::*;
|
||||
#[test]
|
||||
fn test_part_one() {
|
||||
// let input = aoc::read_file("test_inputs", 3);
|
||||
let input = "^v^v^v^v^v";
|
||||
let input = aoc::read_file("test_inputs", 3);
|
||||
assert_eq!(part_one(&input), Some(2));
|
||||
}
|
||||
#[test]
|
||||
fn test_part_two() {
|
||||
// let input = aoc::read_file("test_inputs", 3);
|
||||
let input = "^v^v^v^v^v";
|
||||
let input = aoc::read_file("test_inputs", 3);
|
||||
assert_eq!(part_two(&input), Some(11));
|
||||
}
|
||||
}
|
||||
|
@@ -44,14 +44,12 @@ mod tests {
|
||||
use super::*;
|
||||
#[test]
|
||||
fn test_part_one() {
|
||||
// let input = aoc::read_file("test_inputs", 4);
|
||||
let input = "abcdef";
|
||||
let input = aoc::read_file("test_inputs", 4);
|
||||
assert_eq!(part_one(&input), Some(609043));
|
||||
}
|
||||
#[test]
|
||||
fn test_part_two() {
|
||||
// let input = aoc::read_file("test_inputs", 4);
|
||||
// let input = "abcdef";
|
||||
// assert_eq!(part_two(&input), None);
|
||||
let input = aoc::read_file("test_inputs", 4);
|
||||
assert_eq!(part_two(&input), Some(6742839));
|
||||
}
|
||||
}
|
||||
|
@@ -64,15 +64,12 @@ mod tests {
|
||||
use super::*;
|
||||
#[test]
|
||||
fn test_part_one() {
|
||||
// let input = aoc::read_file("test_inputs", 5);
|
||||
let input = "aaa";
|
||||
let input = aoc::read_file("test_inputs", 5);
|
||||
assert_eq!(part_one(&input), Some(1));
|
||||
}
|
||||
#[test]
|
||||
fn test_part_two() {
|
||||
// let input = aoc::read_file("test_inputs", 5);
|
||||
let input =
|
||||
"qjhvhtzxzqqjkmpb\nxxyxx\nuurcxstgmygtbstg\nieodomkazucvgmuy\naaa";
|
||||
let input = aoc::read_file("test_inputs", 5);
|
||||
assert_eq!(part_two(&input), Some(2));
|
||||
}
|
||||
}
|
||||
|
1
src/test_inputs/01.txt
Normal file
1
src/test_inputs/01.txt
Normal file
@@ -0,0 +1 @@
|
||||
(()(()())))((((
|
1
src/test_inputs/02.txt
Normal file
1
src/test_inputs/02.txt
Normal file
@@ -0,0 +1 @@
|
||||
2x3x4
|
1
src/test_inputs/03.txt
Normal file
1
src/test_inputs/03.txt
Normal file
@@ -0,0 +1 @@
|
||||
^v^v^v^v^v
|
1
src/test_inputs/04.txt
Normal file
1
src/test_inputs/04.txt
Normal file
@@ -0,0 +1 @@
|
||||
abcdef
|
5
src/test_inputs/05.txt
Normal file
5
src/test_inputs/05.txt
Normal file
@@ -0,0 +1,5 @@
|
||||
qjhvhtzxzqqjkmpb
|
||||
xxyxx
|
||||
uurcxstgmygtbstg
|
||||
ieodomkazucvgmuy
|
||||
aaa
|
Reference in New Issue
Block a user