Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
6c8cba8
initial commit
jklinck Jan 7, 2026
7b40d01
finished week_2 assignment
jklinck Jan 7, 2026
63131b9
updated comment on question 15
jklinck Jan 7, 2026
9eca43b
updated a comment
jklinck Jan 9, 2026
ed43ba5
first commit for week2
jklinck Jan 14, 2026
6faf105
fixed name type
jklinck Jan 14, 2026
411ed8a
fixed issue with problem 10
jklinck Jan 14, 2026
23d9af1
fixed a few issues where I didn't follow directions correctly
jklinck Jan 14, 2026
f058899
fixed type on problem #2
jklinck Jan 14, 2026
8011768
fogot to save changes to typo fix on problem #2
jklinck Jan 14, 2026
39bcf65
completed first couple of problems
jklinck Jan 16, 2026
cb80c5c
finished problem 3
jklinck Jan 17, 2026
e2b5b21
finished problem 7
jklinck Jan 18, 2026
889f181
completed through problem 15
jklinck Jan 19, 2026
0e59c04
finished
jklinck Jan 19, 2026
dc217ab
initial week3 commit with new branch that is branched off of the home…
jklinck Jan 19, 2026
9fb3822
fixed a couple issues
jklinck Jan 21, 2026
3bd3577
initial commit for week4
jklinck Jan 24, 2026
2a4e5ae
completed up to problem 5
jklinck Jan 24, 2026
99c9d37
completed through problem 13
jklinck Jan 25, 2026
9511d22
finished through problem 17
jklinck Jan 26, 2026
af7655b
initial commit
jklinck Jan 27, 2026
b249419
completed week4 initial homework
jklinck Jan 27, 2026
ec10195
initial commit
jklinck Jan 29, 2026
e16b4ee
initial commit
jklinck Jan 29, 2026
7338827
started working on problem 2
jklinck Jan 30, 2026
0c2c9ea
completed problem 3
jklinck Feb 3, 2026
cb044f8
completed problem 4
jklinck Feb 3, 2026
f9e154e
completed problem 5
jklinck Feb 3, 2026
1e3890c
completed problem 6
jklinck Feb 3, 2026
af0921d
completed problem 7
jklinck Feb 3, 2026
e4047f7
mostly completed problem 9
jklinck Feb 3, 2026
592dc0e
initial commit
jklinck Feb 4, 2026
f92812c
fixed issues with problem 9
jklinck Feb 5, 2026
477eba2
fixed issue with problem 7 where I wasn not using the proper numpy fu…
jklinck Feb 5, 2026
d5e33aa
initial commit
jklinck Feb 10, 2026
e97f787
finished problem 3
jklinck Feb 12, 2026
32f3424
completed problem 5
jklinck Feb 13, 2026
7864c5b
finished problem 7
jklinck Feb 13, 2026
fa6755a
fixed comment in problem 7
jklinck Feb 13, 2026
d679a91
completed problem 8
jklinck Feb 13, 2026
a9a41eb
completed assignment
jklinck Feb 13, 2026
833ff4f
added a couple print statements for clarity
jklinck Feb 14, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions AD450_math.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
def add(num1, num2):
return num1 + num2

def multiply(num1, num2):
return num1 * num2

Loading