wingkwong / leetcode-the-hard-way

LeetCode The Hard Way - From Absolute Beginner to Quitter. Join Discord: https://discord.com/invite/Nqm4jJcyBf
https://linktr.ee/leetcodethehardway
844 stars 214 forks source link

Fixed Spelling mistake for min function #689

Closed shubhamm1525 closed 6 months ago

shubhamm1525 commented 6 months ago

Change Summary

Found a spelling mismatch issue in the Arrays basic overview section. Original: min(scores_of_students): returns the highest score in the array, which is 67 in this case Updated: min(scores_of_students): returns the lowest score in the array, which is 67 in this case

image

Checklist

If you haven't fulfilled the below requirements or even delete the entire checklist, your PR won't be reviewed and will be closed without notice. Regular contributors (with 10+ PRs) can skip this part.

General

shubhamm1525 commented 6 months ago

Good catch.

Thank you @wingkwong this was my first Open Source Contribution.