[challenge] bad tests: Regular Expressions: Specify Only the Lower Number of Matches
See original GitHub issuechallenge has insufficient tests. Challenge instructions:
Change the regex haRegex to match the word “Hazzah” only when it has four or more letter z’s.
/z{4}/
is enough to pass, whereas I think it should be more like /Haz{3,}ah/
Found this while testing #35747 locally, tested on .rocks with same results.
Tell us about your browser and operating system:
- Browser Name: Chromium
- Browser Version: Version 72.0.3626.121 (Official Build) Built on Ubuntu , running on Ubuntu 16.04 (64-bit)
- Operating System: crouton running on chromebook - Ubuntu 16.04.6 LTS
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Regular Expressions: Specify Only the Lower Number of ...
On the challenge entitled "Regular Expressions: Specify Only the Lower Number of Matches" the instructions say to "Change the regex haRegex to ...
Read more >Specify Only the Lower Number of -Matches - JavaScript
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/regular-expressions/specify-only-the-lower-number-of-matches.
Read more >freeCodeCamp solutions - Regular Expressions (18 - 33)
In this video series I am going to go through the exercises in the Freecodecamp's curriculum, for JavaScript Algorithms and Data ...
Read more >Order of Operations in Regular Expressions (solving a ...
Usernames can only use alpha-numeric characters. · The only numbers in the username have to be at the end. There can be zero...
Read more >14 Strings | R for Data Science: Exercise Solutions
Solutions to the exercises in “R for Data Science” by Garrett Grolemund and Hadley Wickham.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
That will happen - things get a little fuzzy after a whole day of screen time
@nikrb Don’t you mean it should be
/Haz{4,}ah/
?