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
883 stars 221 forks source link

Fixed Spelling mistake for min function #689

Closed shubhamm1525 closed 10 months ago

shubhamm1525 commented 10 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 10 months ago

Good catch.

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