There was an error while loading. Please reload this page.
1 parent cd448ca commit 3f992eaCopy full SHA for 3f992ea
1 file changed
String/CheckPangram.js
@@ -1,7 +1,7 @@
1
/**
2
* @function checkPangram
3
* @description - Pangram is a sentence that contains all the letters in the alphabet https://en.wikipedia.org/wiki/Pangram
4
- * @param {string} string
+ * @param {string} string
5
* @returns {boolean}
6
*/
7
const checkPangram = (string) => {
@@ -10,7 +10,7 @@ const checkPangram = (string) => {
10
}
11
12
13
- * match all 26 alphabets using regex, with the help of:
+ * match all 26 alphabets using regex, with the help of:
14
* Capturing Group
15
* Character set
16
* Negative lookahead
0 commit comments