Open
Conversation
added 12 commits
January 12, 2026 22:10
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR for Assignment wk5 final submission
To fill out this PR template please replace any values that are capital letters in square brackets.
Timeline and Branches
Initial Submission Completed:
2/3
Initial Submission Branch:
https://github.com/jlnsmith2001/AD450Winter2026/tree/wk5-initial
Final Submission Completed:
2/6
Learnings From Other Student's Presentation
[REPLACE THIS WITH 2+ SENTENCES ABOUT WHAT YOU LEARN IN CLASS FROM OTHER STUDENT'S PRESENTATIONS OF THE PROBLEMS.]
was reminded that i can not only instantiate a random nujmber but also a vector of random number by using np,random.randint(low = .. high =.. size = ..) which i had forgotten about as i tend to primarily create vectors using the standard vector1 = np.array([...]) format. It was a good way to remind myself that there are conventions to create multiple vectors at once without having to use a for loop.