-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update and rename .gitignore to error correction
- Loading branch information
0 parents
commit c764864
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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): | ||
|