Files
8th/exercises/practice/hamming/hamming_tests.8th

17 lines
383 B
Plaintext
Raw Normal View History

2022-07-07 11:15:38 +08:00
"test_lib.8th" f:include
"hamming.8th" f:include
with: test
{ 0 .eq. "" "" distance }
{ 0 .eq. "A" "A" distance }
{ 0 .eq. "GGACTGAAATCTG" "GGACTGAAATCTG" distance }
{ 1 .eq. "G" "T" distance }
{ 9 .eq. "GGACGGATTCTG" "AGGACGGATTCT" distance }
{ null .eq. "" "G" distance }
{ null .eq. "AATG" "AAA" distance }
{ null .eq. "ATA" "AGTG" distance }
{ null .eq. "G" "" distance }
bye