From d8ed31d3e8b84fb4af849107561b2abb36ad5ce2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20LUDWIG?= Date: Sat, 16 Sep 2023 16:36:07 +0200 Subject: [PATCH] fix(challenges): add 7th, 8th and 9th tests cases for `frequency-deviation` --- challenges/frequency-deviation/test/7/input.txt | 1 + challenges/frequency-deviation/test/7/output.txt | 1 + challenges/frequency-deviation/test/8/input.txt | 1 + challenges/frequency-deviation/test/8/output.txt | 1 + challenges/frequency-deviation/test/9/input.txt | 1 + challenges/frequency-deviation/test/9/output.txt | 1 + 6 files changed, 6 insertions(+) create mode 100644 challenges/frequency-deviation/test/7/input.txt create mode 100644 challenges/frequency-deviation/test/7/output.txt create mode 100644 challenges/frequency-deviation/test/8/input.txt create mode 100644 challenges/frequency-deviation/test/8/output.txt create mode 100644 challenges/frequency-deviation/test/9/input.txt create mode 100644 challenges/frequency-deviation/test/9/output.txt diff --git a/challenges/frequency-deviation/test/7/input.txt b/challenges/frequency-deviation/test/7/input.txt new file mode 100644 index 0000000..06227db --- /dev/null +++ b/challenges/frequency-deviation/test/7/input.txt @@ -0,0 +1 @@ +aabbbbaa \ No newline at end of file diff --git a/challenges/frequency-deviation/test/7/output.txt b/challenges/frequency-deviation/test/7/output.txt new file mode 100644 index 0000000..e440e5c --- /dev/null +++ b/challenges/frequency-deviation/test/7/output.txt @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/challenges/frequency-deviation/test/8/input.txt b/challenges/frequency-deviation/test/8/input.txt new file mode 100644 index 0000000..17b8af2 --- /dev/null +++ b/challenges/frequency-deviation/test/8/input.txt @@ -0,0 +1 @@ +aaabbbbbabcbbbaaaa \ No newline at end of file diff --git a/challenges/frequency-deviation/test/8/output.txt b/challenges/frequency-deviation/test/8/output.txt new file mode 100644 index 0000000..301160a --- /dev/null +++ b/challenges/frequency-deviation/test/8/output.txt @@ -0,0 +1 @@ +8 \ No newline at end of file diff --git a/challenges/frequency-deviation/test/9/input.txt b/challenges/frequency-deviation/test/9/input.txt new file mode 100644 index 0000000..3a265a8 --- /dev/null +++ b/challenges/frequency-deviation/test/9/input.txt @@ -0,0 +1 @@ +abbaaab \ No newline at end of file diff --git a/challenges/frequency-deviation/test/9/output.txt b/challenges/frequency-deviation/test/9/output.txt new file mode 100644 index 0000000..d8263ee --- /dev/null +++ b/challenges/frequency-deviation/test/9/output.txt @@ -0,0 +1 @@ +2 \ No newline at end of file