-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
28 lines (23 loc) · 1.06 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
NAME: Richard Tang, Victor Tang
EMAIL: [email protected], [email protected]
ID: 305348008, 005359343
Lab 3B
*** Files
- Makefile: Targets for building the project
* default Builds the lab3b bash script which runs the lab3b.py file
* clean Removes bash script files and tarballs created from the Makefile
* dist Creates a distribution tarball containing the project files
- README: Project description, notes, and sources
- lab3b.py: Program file to script that detects error in Lab3a binary output CSV
*** Notes
- The project assumes that there is only one block group in the original image file
before being processed by the lab3a binary.
This assumption comes from the project specifications and allows for minor simpliciations
to the program.
*** Sources
- https://realpython.com/iterate-through-dictionary-python/
Ways to iterate through a dictionary in python
- https://docs.python.org/2/library/sets.html
Docs on set API for linear time access
- https://docs.python.org/3/library/csv.html
Docs on the CSV standard library API for python 3