From 2a56bc667e2b81afaa4017504749c253ea625244 Mon Sep 17 00:00:00 2001 From: Chris Proctor Date: Sun, 3 Mar 2024 11:57:07 -0500 Subject: [PATCH] Add assessment --- assessment.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 assessment.md diff --git a/assessment.md b/assessment.md new file mode 100644 index 0000000..660dfe5 --- /dev/null +++ b/assessment.md @@ -0,0 +1,16 @@ +# Dice Lab Assessment + +Everything works as expected. Nice work! + +## Checkpoint 1 +Looks good. I like the "different" methods :) + +## Checkpoint 2 +The content of your docstrings looks good. However, most are above their function +rather than inside it. This technically works, but defeats some of the purpose of +docstrings, as there are automated tools that use them and expect to find them in +the right place. + +## Checkpoint 3 +Your methods for finding full house and the straights are clever. Between small +straight and large straight I can see you refining the algorithm.