diff --git a/.DS_Store b/.DS_Store index 5a44c1e..5e4f8bc 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/In Class Work 2:6/server.log b/In Class Work 2:6/server.log new file mode 100644 index 0000000..77db717 --- /dev/null +++ b/In Class Work 2:6/server.log @@ -0,0 +1,18 @@ +2026-02-06 00:05:11 INFO app=web pid=2311 msg="Server started" version=1.8.2 +2026-02-06 00:06:03 INFO app=web route=/ status=200 user=anon ms=12 +2026-02-06 00:07:44 WARN app=web msg="Slow query" query="SELECT * FROM courses" ms=2400 +2026-02-06 00:08:12 ERROR app=web route=/login status=500 user=anon msg="Database connection failed" code=DB_CONN +2026-02-06 00:08:14 ERROR app=web route=/login status=500 user=anon msg="Database connection failed" code=DB_CONN +2026-02-06 00:09:01 INFO app=web route=/login status=200 user=anon ms=33 +2026-02-06 00:10:25 ERROR app=api route=/api/grades status=500 user=ca123 msg="Timeout talking to db" code=DB_TIMEOUT +2026-02-06 00:11:18 INFO app=api route=/api/grades status=200 user=ca123 ms=80 +2026-02-06 00:12:22 WARN app=web msg="Disk space low" disk=/dev/disk1 free_gb=1.2 +2026-02-06 00:13:49 ERROR app=web route=/submit status=500 user=xf456 msg="Null pointer" code=NPE +2026-02-06 00:14:02 INFO app=web route=/submit status=200 user=xf456 ms=41 +2026-02-06 00:15:07 ERROR app=web route=/login status=500 user=anon msg="Database connection failed" code=DB_CONN +2026-02-06 00:15:33 WARN app=web msg="Slow query" query="SELECT * FROM users" ms=3100 +2026-02-06 00:16:10 INFO app=web route=/ status=200 user=anon ms=10 +2026-02-06 00:17:55 ERROR app=api route=/api/login status=500 user=jl777 msg="Upstream 502 from auth-service" code=AUTH_502 +2026-02-06 00:18:01 INFO app=api route=/api/login status=200 user=jl777 ms=90 +2026-02-06 00:19:40 ERROR app=web route=/login status=500 user=anon msg="Database connection failed" code=DB_CONN +2026-02-06 00:20:12 INFO app=web route=/ status=200 user=anon ms=9 diff --git a/In Class Work 2:6/studentsData.txt b/In Class Work 2:6/studentsData.txt new file mode 100644 index 0000000..d40128a --- /dev/null +++ b/In Class Work 2:6/studentsData.txt @@ -0,0 +1,24 @@ +Chris - CS +Alex - Math +Jordan - CS +Taylor - Bio +Dan - CS +Goodness - bio +Miles - Math +Bill - CS + + +| First Name | Last Name | Role | +| ---------- | --------------- | ------- | +| Benjamin | Adovasio | Student | +| Chris | Agbonkhese | Teacher | +| Xander | Frey | Student | +| An | Le | student | +| Jiwon | Lee | Student | +| Marquez | Narvaez-Estrada | Tutor | +| Norland | Ramirez | Student | +| Stuart | Saltonstall | student | +| Kasper | Troicki | tutor | +| Scarlett | Werns | Student | +| Dexter | Werns | Student | + diff --git a/Lab 1 - Group Work/.DS_Store b/Lab 1 - Group Work/.DS_Store new file mode 100644 index 0000000..9c06c3f Binary files /dev/null and b/Lab 1 - Group Work/.DS_Store differ diff --git a/Lab 1 - Group Work/lab1_files/.DS_Store b/Lab 1 - Group Work/lab1_files/.DS_Store new file mode 100644 index 0000000..501ce9f Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/.DS_Store differ diff --git a/Lab 1 - Group Work/lab1_files/autograde/.DS_Store b/Lab 1 - Group Work/lab1_files/autograde/.DS_Store new file mode 100644 index 0000000..fb2716c Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/autograde/.DS_Store differ diff --git a/Lab 1 - Group Work/lab1_files/autograde/GRADING/APPEND.py b/Lab 1 - Group Work/lab1_files/autograde/GRADING/APPEND.py new file mode 100644 index 0000000..c7e18e8 --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/GRADING/APPEND.py @@ -0,0 +1,67 @@ + +############################################################################# +from typing import Callable +def testHarness(fcn: Callable, arg: str, expected: str | list) -> int: + ''' function to help test an arbitrary function having one argument + Parameters: + fcn: the actual function being tested (pass without calling) + arg: the argument being passed to the tested function + expected: the expected result, either str or list in the context here + Returns: + None -- just prints + ''' + result = fcn(arg) # call the student's function, passing the given argument + + # see https://unicode-table.com/en/sets/check/ + # replace these as you see fit + mark = "✓" if result == expected else "✗" + print(f"Testing {fcn.__name__}({repr(arg)}):") + print(f"\t {mark} result = {result}") + print(f"\t expected = {expected}") + + if result == expected: + return 1 # correct +1 + return 0 # incorrect +0 + +################### +def main_grading(): + count = 0 + tests = 0 + + arg = []; expected = 0; tests += 1 + count += testHarness(compute_sum, arg, expected) + + arg = [0]; expected = 0; tests += 1 + count += testHarness(compute_sum, arg, expected) + + arg = [1,2,3]; expected = 6; tests += 1 + count += testHarness(compute_sum, arg, expected) + + arg = [-1,2,-3]; expected = -2; tests += 1 + count += testHarness(compute_sum, arg, expected) + + + arg = []; expected = None; tests += 1 + count += testHarness(compute_product, arg, expected) + + arg = [0]; expected = 0; tests += 1 + count += testHarness(compute_product, arg, expected) + + arg = [1,2,3]; expected = 6; tests += 1 + count += testHarness(compute_product, arg, expected) + + arg = [-1,2,-3]; expected = 6; tests += 1 + count += testHarness(compute_product, arg, expected) + + arg = [-1,-2,-3]; expected = -6; tests += 1 + count += testHarness(compute_product, arg, expected) + + arg = [-1,-2,-3,0]; expected = 0; tests += 1 + count += testHarness(compute_product, arg, expected) + + print('-' * 30) + print(f"Total tests passed: {count} / {tests}") + print('-' * 30) + +if __name__ == "__main__": + main_grading() diff --git a/Lab 1 - Group Work/lab1_files/autograde/areed2/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/areed2/dcs211_lab1.py new file mode 100644 index 0000000..868834d --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/areed2/dcs211_lab1.py @@ -0,0 +1,56 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0,0,0])) +print(compute_sum([1,2,3,4,5])) +print(compute_sum([-1,-2,-3,-4,-5])) + +print(compute_sum([1,1,1,1,1,1,1])) +print(compute_sum([1,2,3,4,5,4,3])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0,0,0])) +print(compute_product([1,2,3,4,5])) +print(compute_product([-1,-2,-3,-4,-5])) + +print(compute_product([1,1,1,1,1,1,1])) +print(compute_product([1,2,3,4,5,4,3])) + +def main(): + print(compute_sum([0,0,0])) + print(compute_sum([1,2,3,4,5])) + print(compute_sum([-1,-2,-3,-4,-5])) + + print(compute_sum([1,1,1,1,1,1,1])) + print(compute_sum([1,2,3,4,5,4,3])) + + print(compute_product([0,0,0])) + print(compute_product([1,2,3,4,5])) + print(compute_product([-1,-2,-3,-4,-5])) + + print(compute_product([1,1,1,1,1,1,1])) + print(compute_product([1,2,3,4,5,4,3])) + +main() diff --git a/Lab 1 - Group Work/lab1_files/autograde/ckenny/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/ckenny/dcs211_lab1.py new file mode 100644 index 0000000..a269379 --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/ckenny/dcs211_lab1.py @@ -0,0 +1,43 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0])) + +print(compute_sum([1,2])) + +print(compute_sum([3,4,5,6,7])) + +print(compute_sum([-3,4,5,6,7])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0])) + +print(compute_product([1,2])) + +print(compute_product([3,4,5,6,7])) + +print(compute_product([-3,4,5,6,7])) + + diff --git a/Lab 1 - Group Work/lab1_files/autograde/eamini/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/eamini/dcs211_lab1.py new file mode 100644 index 0000000..a269379 --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/eamini/dcs211_lab1.py @@ -0,0 +1,43 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0])) + +print(compute_sum([1,2])) + +print(compute_sum([3,4,5,6,7])) + +print(compute_sum([-3,4,5,6,7])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0])) + +print(compute_product([1,2])) + +print(compute_product([3,4,5,6,7])) + +print(compute_product([-3,4,5,6,7])) + + diff --git a/Lab 1 - Group Work/lab1_files/autograde/fmiele/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/fmiele/dcs211_lab1.py new file mode 100644 index 0000000..a269379 --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/fmiele/dcs211_lab1.py @@ -0,0 +1,43 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0])) + +print(compute_sum([1,2])) + +print(compute_sum([3,4,5,6,7])) + +print(compute_sum([-3,4,5,6,7])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0])) + +print(compute_product([1,2])) + +print(compute_product([3,4,5,6,7])) + +print(compute_product([-3,4,5,6,7])) + + diff --git a/Lab 1 - Group Work/lab1_files/autograde/jjiang/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/jjiang/dcs211_lab1.py new file mode 100644 index 0000000..aa8641e --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/jjiang/dcs211_lab1.py @@ -0,0 +1,43 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0])) +print(compute_sum([1,2,3])) +print(compute_sum([-1,-2,-3])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0])) +print(compute_product([1,2,3])) +print(compute_product([-1,-2,-3])) + +def main(): + value = compute_sum([0]) + print(value) + value = compute_sum([1,2,3]) + print(value) + value = compute_sum([-1,-2,-3]) + print(value) + +main() diff --git a/Lab 1 - Group Work/lab1_files/autograde/jroelofs/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/jroelofs/dcs211_lab1.py new file mode 100644 index 0000000..868834d --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/jroelofs/dcs211_lab1.py @@ -0,0 +1,56 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0,0,0])) +print(compute_sum([1,2,3,4,5])) +print(compute_sum([-1,-2,-3,-4,-5])) + +print(compute_sum([1,1,1,1,1,1,1])) +print(compute_sum([1,2,3,4,5,4,3])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0,0,0])) +print(compute_product([1,2,3,4,5])) +print(compute_product([-1,-2,-3,-4,-5])) + +print(compute_product([1,1,1,1,1,1,1])) +print(compute_product([1,2,3,4,5,4,3])) + +def main(): + print(compute_sum([0,0,0])) + print(compute_sum([1,2,3,4,5])) + print(compute_sum([-1,-2,-3,-4,-5])) + + print(compute_sum([1,1,1,1,1,1,1])) + print(compute_sum([1,2,3,4,5,4,3])) + + print(compute_product([0,0,0])) + print(compute_product([1,2,3,4,5])) + print(compute_product([-1,-2,-3,-4,-5])) + + print(compute_product([1,1,1,1,1,1,1])) + print(compute_product([1,2,3,4,5,4,3])) + +main() diff --git a/Lab 1 - Group Work/lab1_files/autograde/jtapiamarte/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/jtapiamarte/dcs211_lab1.py new file mode 100644 index 0000000..aa8641e --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/jtapiamarte/dcs211_lab1.py @@ -0,0 +1,43 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0])) +print(compute_sum([1,2,3])) +print(compute_sum([-1,-2,-3])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0])) +print(compute_product([1,2,3])) +print(compute_product([-1,-2,-3])) + +def main(): + value = compute_sum([0]) + print(value) + value = compute_sum([1,2,3]) + print(value) + value = compute_sum([-1,-2,-3]) + print(value) + +main() diff --git a/Lab 1 - Group Work/lab1_files/autograde/lbaron/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/lbaron/dcs211_lab1.py new file mode 100644 index 0000000..a269379 --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/lbaron/dcs211_lab1.py @@ -0,0 +1,43 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0])) + +print(compute_sum([1,2])) + +print(compute_sum([3,4,5,6,7])) + +print(compute_sum([-3,4,5,6,7])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0])) + +print(compute_product([1,2])) + +print(compute_product([3,4,5,6,7])) + +print(compute_product([-3,4,5,6,7])) + + diff --git a/Lab 1 - Group Work/lab1_files/autograde/lchikh/dcs_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/lchikh/dcs_lab1.py new file mode 100644 index 0000000..aa8641e --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/lchikh/dcs_lab1.py @@ -0,0 +1,43 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0])) +print(compute_sum([1,2,3])) +print(compute_sum([-1,-2,-3])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0])) +print(compute_product([1,2,3])) +print(compute_product([-1,-2,-3])) + +def main(): + value = compute_sum([0]) + print(value) + value = compute_sum([1,2,3]) + print(value) + value = compute_sum([-1,-2,-3]) + print(value) + +main() diff --git a/Lab 1 - Group Work/lab1_files/autograde/lhrinda/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/lhrinda/dcs211_lab1.py new file mode 100644 index 0000000..868834d --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/lhrinda/dcs211_lab1.py @@ -0,0 +1,56 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0,0,0])) +print(compute_sum([1,2,3,4,5])) +print(compute_sum([-1,-2,-3,-4,-5])) + +print(compute_sum([1,1,1,1,1,1,1])) +print(compute_sum([1,2,3,4,5,4,3])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0,0,0])) +print(compute_product([1,2,3,4,5])) +print(compute_product([-1,-2,-3,-4,-5])) + +print(compute_product([1,1,1,1,1,1,1])) +print(compute_product([1,2,3,4,5,4,3])) + +def main(): + print(compute_sum([0,0,0])) + print(compute_sum([1,2,3,4,5])) + print(compute_sum([-1,-2,-3,-4,-5])) + + print(compute_sum([1,1,1,1,1,1,1])) + print(compute_sum([1,2,3,4,5,4,3])) + + print(compute_product([0,0,0])) + print(compute_product([1,2,3,4,5])) + print(compute_product([-1,-2,-3,-4,-5])) + + print(compute_product([1,1,1,1,1,1,1])) + print(compute_product([1,2,3,4,5,4,3])) + +main() diff --git a/Lab 1 - Group Work/lab1_files/autograde/lpaynter/lab1.py b/Lab 1 - Group Work/lab1_files/autograde/lpaynter/lab1.py new file mode 100644 index 0000000..a269379 --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/lpaynter/lab1.py @@ -0,0 +1,43 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0])) + +print(compute_sum([1,2])) + +print(compute_sum([3,4,5,6,7])) + +print(compute_sum([-3,4,5,6,7])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0])) + +print(compute_product([1,2])) + +print(compute_product([3,4,5,6,7])) + +print(compute_product([-3,4,5,6,7])) + + diff --git a/Lab 1 - Group Work/lab1_files/autograde/mcory/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/mcory/dcs211_lab1.py new file mode 100644 index 0000000..a269379 --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/mcory/dcs211_lab1.py @@ -0,0 +1,43 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0])) + +print(compute_sum([1,2])) + +print(compute_sum([3,4,5,6,7])) + +print(compute_sum([-3,4,5,6,7])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0])) + +print(compute_product([1,2])) + +print(compute_product([3,4,5,6,7])) + +print(compute_product([-3,4,5,6,7])) + + diff --git a/Lab 1 - Group Work/lab1_files/autograde/mdonaghy/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/mdonaghy/dcs211_lab1.py new file mode 100644 index 0000000..aa8641e --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/mdonaghy/dcs211_lab1.py @@ -0,0 +1,43 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0])) +print(compute_sum([1,2,3])) +print(compute_sum([-1,-2,-3])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0])) +print(compute_product([1,2,3])) +print(compute_product([-1,-2,-3])) + +def main(): + value = compute_sum([0]) + print(value) + value = compute_sum([1,2,3]) + print(value) + value = compute_sum([-1,-2,-3]) + print(value) + +main() diff --git a/Lab 1 - Group Work/lab1_files/autograde/mlogan/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/mlogan/dcs211_lab1.py new file mode 100644 index 0000000..868834d --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/mlogan/dcs211_lab1.py @@ -0,0 +1,56 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0,0,0])) +print(compute_sum([1,2,3,4,5])) +print(compute_sum([-1,-2,-3,-4,-5])) + +print(compute_sum([1,1,1,1,1,1,1])) +print(compute_sum([1,2,3,4,5,4,3])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0,0,0])) +print(compute_product([1,2,3,4,5])) +print(compute_product([-1,-2,-3,-4,-5])) + +print(compute_product([1,1,1,1,1,1,1])) +print(compute_product([1,2,3,4,5,4,3])) + +def main(): + print(compute_sum([0,0,0])) + print(compute_sum([1,2,3,4,5])) + print(compute_sum([-1,-2,-3,-4,-5])) + + print(compute_sum([1,1,1,1,1,1,1])) + print(compute_sum([1,2,3,4,5,4,3])) + + print(compute_product([0,0,0])) + print(compute_product([1,2,3,4,5])) + print(compute_product([-1,-2,-3,-4,-5])) + + print(compute_product([1,1,1,1,1,1,1])) + print(compute_product([1,2,3,4,5,4,3])) + +main() diff --git a/Lab 1 - Group Work/lab1_files/autograde/mnijjer/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/mnijjer/dcs211_lab1.py new file mode 100644 index 0000000..a269379 --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/mnijjer/dcs211_lab1.py @@ -0,0 +1,43 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0])) + +print(compute_sum([1,2])) + +print(compute_sum([3,4,5,6,7])) + +print(compute_sum([-3,4,5,6,7])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0])) + +print(compute_product([1,2])) + +print(compute_product([3,4,5,6,7])) + +print(compute_product([-3,4,5,6,7])) + + diff --git a/Lab 1 - Group Work/lab1_files/autograde/mshimizu/dcs 211 lab 1.py b/Lab 1 - Group Work/lab1_files/autograde/mshimizu/dcs 211 lab 1.py new file mode 100644 index 0000000..aa8641e --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/mshimizu/dcs 211 lab 1.py @@ -0,0 +1,43 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0])) +print(compute_sum([1,2,3])) +print(compute_sum([-1,-2,-3])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0])) +print(compute_product([1,2,3])) +print(compute_product([-1,-2,-3])) + +def main(): + value = compute_sum([0]) + print(value) + value = compute_sum([1,2,3]) + print(value) + value = compute_sum([-1,-2,-3]) + print(value) + +main() diff --git a/Lab 1 - Group Work/lab1_files/autograde/myoung2/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/myoung2/dcs211_lab1.py new file mode 100644 index 0000000..a269379 --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/myoung2/dcs211_lab1.py @@ -0,0 +1,43 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0])) + +print(compute_sum([1,2])) + +print(compute_sum([3,4,5,6,7])) + +print(compute_sum([-3,4,5,6,7])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0])) + +print(compute_product([1,2])) + +print(compute_product([3,4,5,6,7])) + +print(compute_product([-3,4,5,6,7])) + + diff --git a/Lab 1 - Group Work/lab1_files/autograde/nzuze/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/nzuze/dcs211_lab1.py new file mode 100644 index 0000000..868834d --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/nzuze/dcs211_lab1.py @@ -0,0 +1,56 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0,0,0])) +print(compute_sum([1,2,3,4,5])) +print(compute_sum([-1,-2,-3,-4,-5])) + +print(compute_sum([1,1,1,1,1,1,1])) +print(compute_sum([1,2,3,4,5,4,3])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0,0,0])) +print(compute_product([1,2,3,4,5])) +print(compute_product([-1,-2,-3,-4,-5])) + +print(compute_product([1,1,1,1,1,1,1])) +print(compute_product([1,2,3,4,5,4,3])) + +def main(): + print(compute_sum([0,0,0])) + print(compute_sum([1,2,3,4,5])) + print(compute_sum([-1,-2,-3,-4,-5])) + + print(compute_sum([1,1,1,1,1,1,1])) + print(compute_sum([1,2,3,4,5,4,3])) + + print(compute_product([0,0,0])) + print(compute_product([1,2,3,4,5])) + print(compute_product([-1,-2,-3,-4,-5])) + + print(compute_product([1,1,1,1,1,1,1])) + print(compute_product([1,2,3,4,5,4,3])) + +main() diff --git a/Lab 1 - Group Work/lab1_files/autograde/oenkhorgil/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/oenkhorgil/dcs211_lab1.py new file mode 100644 index 0000000..868834d --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/oenkhorgil/dcs211_lab1.py @@ -0,0 +1,56 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0,0,0])) +print(compute_sum([1,2,3,4,5])) +print(compute_sum([-1,-2,-3,-4,-5])) + +print(compute_sum([1,1,1,1,1,1,1])) +print(compute_sum([1,2,3,4,5,4,3])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0,0,0])) +print(compute_product([1,2,3,4,5])) +print(compute_product([-1,-2,-3,-4,-5])) + +print(compute_product([1,1,1,1,1,1,1])) +print(compute_product([1,2,3,4,5,4,3])) + +def main(): + print(compute_sum([0,0,0])) + print(compute_sum([1,2,3,4,5])) + print(compute_sum([-1,-2,-3,-4,-5])) + + print(compute_sum([1,1,1,1,1,1,1])) + print(compute_sum([1,2,3,4,5,4,3])) + + print(compute_product([0,0,0])) + print(compute_product([1,2,3,4,5])) + print(compute_product([-1,-2,-3,-4,-5])) + + print(compute_product([1,1,1,1,1,1,1])) + print(compute_product([1,2,3,4,5,4,3])) + +main() diff --git a/Lab 1 - Group Work/lab1_files/autograde/oputnambagley/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/oputnambagley/dcs211_lab1.py new file mode 100644 index 0000000..868834d --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/oputnambagley/dcs211_lab1.py @@ -0,0 +1,56 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0,0,0])) +print(compute_sum([1,2,3,4,5])) +print(compute_sum([-1,-2,-3,-4,-5])) + +print(compute_sum([1,1,1,1,1,1,1])) +print(compute_sum([1,2,3,4,5,4,3])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0,0,0])) +print(compute_product([1,2,3,4,5])) +print(compute_product([-1,-2,-3,-4,-5])) + +print(compute_product([1,1,1,1,1,1,1])) +print(compute_product([1,2,3,4,5,4,3])) + +def main(): + print(compute_sum([0,0,0])) + print(compute_sum([1,2,3,4,5])) + print(compute_sum([-1,-2,-3,-4,-5])) + + print(compute_sum([1,1,1,1,1,1,1])) + print(compute_sum([1,2,3,4,5,4,3])) + + print(compute_product([0,0,0])) + print(compute_product([1,2,3,4,5])) + print(compute_product([-1,-2,-3,-4,-5])) + + print(compute_product([1,1,1,1,1,1,1])) + print(compute_product([1,2,3,4,5,4,3])) + +main() diff --git a/Lab 1 - Group Work/lab1_files/autograde/rgleason/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/rgleason/dcs211_lab1.py new file mode 100644 index 0000000..868834d --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/rgleason/dcs211_lab1.py @@ -0,0 +1,56 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0,0,0])) +print(compute_sum([1,2,3,4,5])) +print(compute_sum([-1,-2,-3,-4,-5])) + +print(compute_sum([1,1,1,1,1,1,1])) +print(compute_sum([1,2,3,4,5,4,3])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0,0,0])) +print(compute_product([1,2,3,4,5])) +print(compute_product([-1,-2,-3,-4,-5])) + +print(compute_product([1,1,1,1,1,1,1])) +print(compute_product([1,2,3,4,5,4,3])) + +def main(): + print(compute_sum([0,0,0])) + print(compute_sum([1,2,3,4,5])) + print(compute_sum([-1,-2,-3,-4,-5])) + + print(compute_sum([1,1,1,1,1,1,1])) + print(compute_sum([1,2,3,4,5,4,3])) + + print(compute_product([0,0,0])) + print(compute_product([1,2,3,4,5])) + print(compute_product([-1,-2,-3,-4,-5])) + + print(compute_product([1,1,1,1,1,1,1])) + print(compute_product([1,2,3,4,5,4,3])) + +main() diff --git a/Lab 1 - Group Work/lab1_files/autograde/shughes2/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/shughes2/dcs211_lab1.py new file mode 100644 index 0000000..aa8641e --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/shughes2/dcs211_lab1.py @@ -0,0 +1,43 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0])) +print(compute_sum([1,2,3])) +print(compute_sum([-1,-2,-3])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0])) +print(compute_product([1,2,3])) +print(compute_product([-1,-2,-3])) + +def main(): + value = compute_sum([0]) + print(value) + value = compute_sum([1,2,3]) + print(value) + value = compute_sum([-1,-2,-3]) + print(value) + +main() diff --git a/Lab 1 - Group Work/lab1_files/autograde/smaquera/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/smaquera/dcs211_lab1.py new file mode 100644 index 0000000..aa8641e --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/smaquera/dcs211_lab1.py @@ -0,0 +1,43 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0])) +print(compute_sum([1,2,3])) +print(compute_sum([-1,-2,-3])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0])) +print(compute_product([1,2,3])) +print(compute_product([-1,-2,-3])) + +def main(): + value = compute_sum([0]) + print(value) + value = compute_sum([1,2,3]) + print(value) + value = compute_sum([-1,-2,-3]) + print(value) + +main() diff --git a/Lab 1 - Group Work/lab1_files/autograde/srice/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/srice/dcs211_lab1.py new file mode 100644 index 0000000..a269379 --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/srice/dcs211_lab1.py @@ -0,0 +1,43 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0])) + +print(compute_sum([1,2])) + +print(compute_sum([3,4,5,6,7])) + +print(compute_sum([-3,4,5,6,7])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0])) + +print(compute_product([1,2])) + +print(compute_product([3,4,5,6,7])) + +print(compute_product([-3,4,5,6,7])) + + diff --git a/Lab 1 - Group Work/lab1_files/autograde/students.txt b/Lab 1 - Group Work/lab1_files/autograde/students.txt new file mode 100644 index 0000000..a6108e9 --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/students.txt @@ -0,0 +1,27 @@ +zali Zain Ali +eamini Edward Amini +lbaron Liam Baron +lchikh Leith Rouhou +mcory Max Cory +mdonaghy Megan Donaghy +oenkhorgil Yuka Enkh-Orgil +rgleason Ryan Gleason +lhrinda Luke Hrinda +shughes2 Sarah Hughes +jjiang Jerry Jiang +ckenny Chris Kenny +tleamon Ted Leamon +mlogan Miles Logan +smaquera Sara Maquera +fmiele Fran Miele +mnijjer Mehar Nijjer +lpaynter Lucy Paynter +oputnambagley Lando Putnam-Bagley +areed2 Andrew Reed +srice Sam Rice +jroelofs Julia Roelofs +tshapiro Teddy Shapiro +mshimizu Micah Shimizu +jtapiamarte Juan Carlos Tapia Marte +myoung2 Malina Young +nzuze Noku Zuze diff --git a/Lab 1 - Group Work/lab1_files/autograde/tleamon/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/tleamon/dcs211_lab1.py new file mode 100644 index 0000000..aa8641e --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/tleamon/dcs211_lab1.py @@ -0,0 +1,43 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0])) +print(compute_sum([1,2,3])) +print(compute_sum([-1,-2,-3])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0])) +print(compute_product([1,2,3])) +print(compute_product([-1,-2,-3])) + +def main(): + value = compute_sum([0]) + print(value) + value = compute_sum([1,2,3]) + print(value) + value = compute_sum([-1,-2,-3]) + print(value) + +main() diff --git a/Lab 1 - Group Work/lab1_files/autograde/tshapiro/dcs211 lab1.py b/Lab 1 - Group Work/lab1_files/autograde/tshapiro/dcs211 lab1.py new file mode 100644 index 0000000..a269379 --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/tshapiro/dcs211 lab1.py @@ -0,0 +1,43 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0])) + +print(compute_sum([1,2])) + +print(compute_sum([3,4,5,6,7])) + +print(compute_sum([-3,4,5,6,7])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0])) + +print(compute_product([1,2])) + +print(compute_product([3,4,5,6,7])) + +print(compute_product([-3,4,5,6,7])) + + diff --git a/Lab 1 - Group Work/lab1_files/autograde/zali/dcs211_lab1.py b/Lab 1 - Group Work/lab1_files/autograde/zali/dcs211_lab1.py new file mode 100644 index 0000000..868834d --- /dev/null +++ b/Lab 1 - Group Work/lab1_files/autograde/zali/dcs211_lab1.py @@ -0,0 +1,56 @@ +def compute_sum(list_: list[int]) -> int: + ''' function to compute the sum of a list of integers + Parameters: + list_: a list of integers + Returns: + the integer sum of the list of integers + ''' + sum_ = 0 + for i in list_: + sum_ += i + return sum_ + +print(compute_sum([0,0,0])) +print(compute_sum([1,2,3,4,5])) +print(compute_sum([-1,-2,-3,-4,-5])) + +print(compute_sum([1,1,1,1,1,1,1])) +print(compute_sum([1,2,3,4,5,4,3])) + +def compute_product(list_: list[int]) -> int | None: + ''' function to compute the product of a list of integers + Parameters: + list_: a list of integers + Returns: + the product sum of the list of integers; if the list is + empty, we return None + ''' + if len(list_) == 0: return None + product = 1 + for i in list_: + product *= i + return product + +print(compute_product([0,0,0])) +print(compute_product([1,2,3,4,5])) +print(compute_product([-1,-2,-3,-4,-5])) + +print(compute_product([1,1,1,1,1,1,1])) +print(compute_product([1,2,3,4,5,4,3])) + +def main(): + print(compute_sum([0,0,0])) + print(compute_sum([1,2,3,4,5])) + print(compute_sum([-1,-2,-3,-4,-5])) + + print(compute_sum([1,1,1,1,1,1,1])) + print(compute_sum([1,2,3,4,5,4,3])) + + print(compute_product([0,0,0])) + print(compute_product([1,2,3,4,5])) + print(compute_product([-1,-2,-3,-4,-5])) + + print(compute_product([1,1,1,1,1,1,1])) + print(compute_product([1,2,3,4,5,4,3])) + +main() diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/.DS_Store b/Lab 1 - Group Work/lab1_files/file_renaming/.DS_Store new file mode 100644 index 0000000..c641a0f Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/.DS_Store differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets.zip b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets.zip new file mode 100644 index 0000000..45500d4 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets.zip differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 11 Data Set 1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 11 Data Set 1.sav new file mode 100644 index 0000000..c138b45 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 11 Data Set 1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 11 Data Set 2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 11 Data Set 2.sav new file mode 100644 index 0000000..72c9559 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 11 Data Set 2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 11 Data Set 3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 11 Data Set 3.sav new file mode 100644 index 0000000..25f3101 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 11 Data Set 3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 11 Data Set 4.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 11 Data Set 4.sav new file mode 100644 index 0000000..b0c1daa Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 11 Data Set 4.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 11 Data Set 5.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 11 Data Set 5.sav new file mode 100644 index 0000000..f843558 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 11 Data Set 5.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 11 Data Set 6.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 11 Data Set 6.sav new file mode 100644 index 0000000..2985407 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 11 Data Set 6.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 12 Data Set 1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 12 Data Set 1.sav new file mode 100644 index 0000000..174d379 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 12 Data Set 1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 12 Data Set 2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 12 Data Set 2.sav new file mode 100644 index 0000000..859e328 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 12 Data Set 2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 12 Data Set 3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 12 Data Set 3.sav new file mode 100644 index 0000000..f9ef852 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 12 Data Set 3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 12 Data Set 4.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 12 Data Set 4.sav new file mode 100644 index 0000000..6e64a1f Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 12 Data Set 4.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 12 Data Set 5.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 12 Data Set 5.sav new file mode 100644 index 0000000..d48bf6d Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 12 Data Set 5.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 13 Data Set 1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 13 Data Set 1.sav new file mode 100644 index 0000000..bd6f512 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 13 Data Set 1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 13 Data Set 2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 13 Data Set 2.sav new file mode 100644 index 0000000..864eef4 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 13 Data Set 2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 13 Data Set 3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 13 Data Set 3.sav new file mode 100644 index 0000000..962db9a Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 13 Data Set 3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 13 Data Set 4.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 13 Data Set 4.sav new file mode 100644 index 0000000..59ee093 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 13 Data Set 4.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 14 Data Set 1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 14 Data Set 1.sav new file mode 100644 index 0000000..8e2644b Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 14 Data Set 1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 14 Data Set 2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 14 Data Set 2.sav new file mode 100644 index 0000000..2abf129 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 14 Data Set 2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 14 Data Set 3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 14 Data Set 3.sav new file mode 100644 index 0000000..9a3e886 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 14 Data Set 3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 14 Data Set 4.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 14 Data Set 4.sav new file mode 100644 index 0000000..b1dcae5 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 14 Data Set 4.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 15 Data Set 1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 15 Data Set 1.sav new file mode 100644 index 0000000..37c38ee Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 15 Data Set 1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 15 Data Set 2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 15 Data Set 2.sav new file mode 100644 index 0000000..bb8726d Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 15 Data Set 2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 15 Data Set 3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 15 Data Set 3.sav new file mode 100644 index 0000000..a4e017d Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 15 Data Set 3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 15 Data Set 4.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 15 Data Set 4.sav new file mode 100644 index 0000000..ef1b888 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 15 Data Set 4.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 15 Data Set 5.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 15 Data Set 5.sav new file mode 100644 index 0000000..e07ce2c Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 15 Data Set 5.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 16 Data Set 1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 16 Data Set 1.sav new file mode 100644 index 0000000..f177d32 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 16 Data Set 1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 16 Data Set 2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 16 Data Set 2.sav new file mode 100644 index 0000000..7b42078 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 16 Data Set 2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 16 Data Set 3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 16 Data Set 3.sav new file mode 100644 index 0000000..2236833 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 16 Data Set 3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 17 Data Set 1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 17 Data Set 1.sav new file mode 100644 index 0000000..4318531 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 17 Data Set 1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 17 Data Set 2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 17 Data Set 2.sav new file mode 100644 index 0000000..55e696f Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 17 Data Set 2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 17 Data Set 3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 17 Data Set 3.sav new file mode 100644 index 0000000..7bd24bb Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 17 Data Set 3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 17 Data Set 4.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 17 Data Set 4.sav new file mode 100644 index 0000000..412e473 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 17 Data Set 4.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 17 Data Set 5.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 17 Data Set 5.sav new file mode 100644 index 0000000..d59d642 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 17 Data Set 5.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 19 Data Set 1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 19 Data Set 1.sav new file mode 100644 index 0000000..258d602 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 19 Data Set 1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 19 Data Set 2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 19 Data Set 2.sav new file mode 100644 index 0000000..3b477c2 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 19 Data Set 2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 2 Data Set 1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 2 Data Set 1.sav new file mode 100644 index 0000000..e8ae04f Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 2 Data Set 1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 2 Data Set 2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 2 Data Set 2.sav new file mode 100644 index 0000000..9608fbd Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 2 Data Set 2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 2 Data Set 3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 2 Data Set 3.sav new file mode 100644 index 0000000..87407c8 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 2 Data Set 3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 2 Data Set 4.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 2 Data Set 4.sav new file mode 100644 index 0000000..d4dddef Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 2 Data Set 4.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 3 Data Set 1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 3 Data Set 1.sav new file mode 100644 index 0000000..d00f361 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 3 Data Set 1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 3 Data Set 2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 3 Data Set 2.sav new file mode 100644 index 0000000..e90a51a Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 3 Data Set 2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 3 Data Set 3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 3 Data Set 3.sav new file mode 100644 index 0000000..62958a5 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 3 Data Set 3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 3 Data Set 4.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 3 Data Set 4.sav new file mode 100644 index 0000000..b685f5f Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 3 Data Set 4.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 4 Data Set 1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 4 Data Set 1.sav new file mode 100644 index 0000000..a916459 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 4 Data Set 1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 4 Data Set 2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 4 Data Set 2.sav new file mode 100644 index 0000000..da12ca5 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 4 Data Set 2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 4 Data Set 3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 4 Data Set 3.sav new file mode 100644 index 0000000..18a443c Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 4 Data Set 3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 5 Data Set 1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 5 Data Set 1.sav new file mode 100644 index 0000000..9d82eea Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 5 Data Set 1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 5 Data Set 2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 5 Data Set 2.sav new file mode 100644 index 0000000..23a5f6b Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 5 Data Set 2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 5 Data Set 3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 5 Data Set 3.sav new file mode 100644 index 0000000..2d51c05 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 5 Data Set 3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 5 Data Set 4.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 5 Data Set 4.sav new file mode 100644 index 0000000..808e831 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 5 Data Set 4.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 5 Data Set 5.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 5 Data Set 5.sav new file mode 100644 index 0000000..7034b8a Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 5 Data Set 5.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 5 Data Set 6.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 5 Data Set 6.sav new file mode 100644 index 0000000..3b5a4f3 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 5 Data Set 6.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 6 Data Set 1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 6 Data Set 1.sav new file mode 100644 index 0000000..8f01b16 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 6 Data Set 1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 6 Data Set 2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 6 Data Set 2.sav new file mode 100644 index 0000000..a1bddb1 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Chapter 6 Data Set 2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Sample Data Set.sav b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Sample Data Set.sav new file mode 100644 index 0000000..e6377fd Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/Salkind 6e Data Sets/Sample Data Set.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter11/DataSet1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter11/DataSet1.sav new file mode 100644 index 0000000..c138b45 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter11/DataSet1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter11/DataSet2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter11/DataSet2.sav new file mode 100644 index 0000000..72c9559 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter11/DataSet2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter11/DataSet3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter11/DataSet3.sav new file mode 100644 index 0000000..25f3101 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter11/DataSet3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter11/DataSet4.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter11/DataSet4.sav new file mode 100644 index 0000000..b0c1daa Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter11/DataSet4.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter11/DataSet5.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter11/DataSet5.sav new file mode 100644 index 0000000..f843558 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter11/DataSet5.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter11/DataSet6.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter11/DataSet6.sav new file mode 100644 index 0000000..2985407 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter11/DataSet6.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter12/DataSet1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter12/DataSet1.sav new file mode 100644 index 0000000..174d379 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter12/DataSet1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter12/DataSet2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter12/DataSet2.sav new file mode 100644 index 0000000..859e328 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter12/DataSet2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter12/DataSet3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter12/DataSet3.sav new file mode 100644 index 0000000..f9ef852 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter12/DataSet3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter12/DataSet4.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter12/DataSet4.sav new file mode 100644 index 0000000..6e64a1f Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter12/DataSet4.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter12/DataSet5.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter12/DataSet5.sav new file mode 100644 index 0000000..d48bf6d Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter12/DataSet5.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter13/DataSet1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter13/DataSet1.sav new file mode 100644 index 0000000..bd6f512 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter13/DataSet1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter13/DataSet2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter13/DataSet2.sav new file mode 100644 index 0000000..864eef4 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter13/DataSet2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter13/DataSet3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter13/DataSet3.sav new file mode 100644 index 0000000..962db9a Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter13/DataSet3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter13/DataSet4.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter13/DataSet4.sav new file mode 100644 index 0000000..59ee093 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter13/DataSet4.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter14/DataSet1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter14/DataSet1.sav new file mode 100644 index 0000000..8e2644b Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter14/DataSet1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter14/DataSet2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter14/DataSet2.sav new file mode 100644 index 0000000..2abf129 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter14/DataSet2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter14/DataSet3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter14/DataSet3.sav new file mode 100644 index 0000000..9a3e886 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter14/DataSet3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter14/DataSet4.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter14/DataSet4.sav new file mode 100644 index 0000000..b1dcae5 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter14/DataSet4.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter15/DataSet1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter15/DataSet1.sav new file mode 100644 index 0000000..37c38ee Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter15/DataSet1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter15/DataSet2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter15/DataSet2.sav new file mode 100644 index 0000000..bb8726d Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter15/DataSet2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter15/DataSet3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter15/DataSet3.sav new file mode 100644 index 0000000..a4e017d Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter15/DataSet3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter15/DataSet4.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter15/DataSet4.sav new file mode 100644 index 0000000..ef1b888 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter15/DataSet4.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter15/DataSet5.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter15/DataSet5.sav new file mode 100644 index 0000000..e07ce2c Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter15/DataSet5.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter16/DataSet1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter16/DataSet1.sav new file mode 100644 index 0000000..f177d32 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter16/DataSet1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter16/DataSet2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter16/DataSet2.sav new file mode 100644 index 0000000..7b42078 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter16/DataSet2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter16/DataSet3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter16/DataSet3.sav new file mode 100644 index 0000000..2236833 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter16/DataSet3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter17/DataSet1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter17/DataSet1.sav new file mode 100644 index 0000000..4318531 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter17/DataSet1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter17/DataSet2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter17/DataSet2.sav new file mode 100644 index 0000000..55e696f Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter17/DataSet2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter17/DataSet3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter17/DataSet3.sav new file mode 100644 index 0000000..7bd24bb Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter17/DataSet3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter17/DataSet4.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter17/DataSet4.sav new file mode 100644 index 0000000..412e473 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter17/DataSet4.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter17/DataSet5.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter17/DataSet5.sav new file mode 100644 index 0000000..d59d642 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter17/DataSet5.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter19/DataSet1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter19/DataSet1.sav new file mode 100644 index 0000000..258d602 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter19/DataSet1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter19/DataSet2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter19/DataSet2.sav new file mode 100644 index 0000000..3b477c2 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter19/DataSet2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter2/DataSet1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter2/DataSet1.sav new file mode 100644 index 0000000..e8ae04f Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter2/DataSet1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter2/DataSet2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter2/DataSet2.sav new file mode 100644 index 0000000..9608fbd Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter2/DataSet2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter2/DataSet3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter2/DataSet3.sav new file mode 100644 index 0000000..87407c8 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter2/DataSet3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter2/DataSet4.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter2/DataSet4.sav new file mode 100644 index 0000000..d4dddef Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter2/DataSet4.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter3/DataSet1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter3/DataSet1.sav new file mode 100644 index 0000000..d00f361 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter3/DataSet1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter3/DataSet2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter3/DataSet2.sav new file mode 100644 index 0000000..e90a51a Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter3/DataSet2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter3/DataSet3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter3/DataSet3.sav new file mode 100644 index 0000000..62958a5 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter3/DataSet3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter3/DataSet4.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter3/DataSet4.sav new file mode 100644 index 0000000..b685f5f Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter3/DataSet4.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter4/DataSet1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter4/DataSet1.sav new file mode 100644 index 0000000..a916459 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter4/DataSet1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter4/DataSet2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter4/DataSet2.sav new file mode 100644 index 0000000..da12ca5 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter4/DataSet2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter4/DataSet3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter4/DataSet3.sav new file mode 100644 index 0000000..18a443c Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter4/DataSet3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter5/DataSet1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter5/DataSet1.sav new file mode 100644 index 0000000..9d82eea Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter5/DataSet1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter5/DataSet2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter5/DataSet2.sav new file mode 100644 index 0000000..23a5f6b Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter5/DataSet2.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter5/DataSet3.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter5/DataSet3.sav new file mode 100644 index 0000000..2d51c05 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter5/DataSet3.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter5/DataSet4.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter5/DataSet4.sav new file mode 100644 index 0000000..808e831 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter5/DataSet4.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter5/DataSet5.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter5/DataSet5.sav new file mode 100644 index 0000000..7034b8a Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter5/DataSet5.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter5/DataSet6.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter5/DataSet6.sav new file mode 100644 index 0000000..3b5a4f3 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter5/DataSet6.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter6/DataSet1.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter6/DataSet1.sav new file mode 100644 index 0000000..8f01b16 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter6/DataSet1.sav differ diff --git a/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter6/DataSet2.sav b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter6/DataSet2.sav new file mode 100644 index 0000000..a1bddb1 Binary files /dev/null and b/Lab 1 - Group Work/lab1_files/file_renaming/reorganized/Chapter6/DataSet2.sav differ diff --git a/Lab 1 - Group Work/reorganize.sh b/Lab 1 - Group Work/reorganize.sh new file mode 100755 index 0000000..0c25550 --- /dev/null +++ b/Lab 1 - Group Work/reorganize.sh @@ -0,0 +1,30 @@ +#!/usr/bin/env bash +set -euo pipefail + +SRC_DIR="${1:-lab1_files/file_renaming/Salkind 6e Data Sets}" +DEST_DIR="${2:-lab1_files/file_renaming/reorganized}" + +mkdir -p "$DEST_DIR" + +shopt -s nullglob + +for f in "$SRC_DIR"/Chapter\ *\ Data\ Set\ *.sav; do + base="$(basename "$f")" # e.g., "Chapter 12 Data Set 3.sav" + + # Extract chapter number k and dataset number j robustly. + # Expected format: Chapter k Data Set j.sav + k="$(printf '%s' "$base" | sed -E 's/^Chapter ([0-9]+) Data Set ([0-9]+)\.sav$/\1/')" + j="$(printf '%s' "$base" | sed -E 's/^Chapter ([0-9]+) Data Set ([0-9]+)\.sav$/\2/')" + + # If the file doesn't match the pattern, skip it (e.g., "Sample Data Set.sav") + if [[ "$k" == "$base" || "$j" == "$base" ]]; then + continue + fi + + chap_dir="$DEST_DIR/Chapter${k}" + mkdir -p "$chap_dir" + + cp -f "$f" "$chap_dir/DataSet${j}.sav" +done + +echo "Done. Created reorganized structure at: $DEST_DIR" diff --git a/Lab 1/.DS_Store b/Lab 1/.DS_Store index dc8904e..f13c50f 100644 Binary files a/Lab 1/.DS_Store and b/Lab 1/.DS_Store differ diff --git a/studentsData.txt b/studentsData.txt new file mode 100644 index 0000000..d40128a --- /dev/null +++ b/studentsData.txt @@ -0,0 +1,24 @@ +Chris - CS +Alex - Math +Jordan - CS +Taylor - Bio +Dan - CS +Goodness - bio +Miles - Math +Bill - CS + + +| First Name | Last Name | Role | +| ---------- | --------------- | ------- | +| Benjamin | Adovasio | Student | +| Chris | Agbonkhese | Teacher | +| Xander | Frey | Student | +| An | Le | student | +| Jiwon | Lee | Student | +| Marquez | Narvaez-Estrada | Tutor | +| Norland | Ramirez | Student | +| Stuart | Saltonstall | student | +| Kasper | Troicki | tutor | +| Scarlett | Werns | Student | +| Dexter | Werns | Student | +