diff --git a/subjects/smallest/README.md b/subjects/smallest/README.md index 157c34c4b..504bfa929 100644 --- a/subjects/smallest/README.md +++ b/subjects/smallest/README.md @@ -4,6 +4,8 @@ Create a function named `smallest` that gets the smallest number in the `HashMap`. +If the `HashMap` is empty, return the maximum `i32`. + ### Expected Function ```rust