diff --git a/.gitignore/error correction b/.gitignore/error correction new file mode 100644 index 0000000..195f10a --- /dev/null +++ b/.gitignore/error correction @@ -0,0 +1,21 @@ +# Error Detection +# CSE1010 Homework 7, Fall 2018 +# Katy Miller +# 10/31/18 +# Chloe Cachet +# Lab Section: 013L +# Instructor: Ahmad Jbara + +import errordetection +e = errordetection + + +def string2bin(string): + stringList = [] + for n in string: + s = e.char2bin(n) + stringList.append(s) + return stringList + +def segmentString(string, fill): +