Skip to content

Commit cfe3408

Browse files
committed
docs: kata description
1 parent 9c13377 commit cfe3408

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

kata/5-kyu/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
- [Pick peaks](pick-peaks "5279f6fe5ab7f447890006a7")
3939
- [Primes in numbers](primes-in-numbers "54d512e62a5e54c96200019e")
4040
- [Product of consecutive Fib numbers](product-of-consecutive-fib-numbers "5541f58a944b85ce6d00006a")
41+
- [Regex Password Validation](regex-password-validation "52e1476c8147a7547a000811")
4142
- [RGB To Hex Conversion](rgb-to-hex-conversion "513e08acc600c94f01000001")
4243
- [Rot13](rot13-1 "530e15517bc88ac656000716")
4344
- [ROT13](rot13 "52223df9e8f98c7aa7000062")
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# [Regex Password Validation](https://www.codewars.com/kata/regex-password-validation "https://www.codewars.com/kata/52e1476c8147a7547a000811")
2+
3+
You need to write regex that will validate a password to make sure it meets the following criteria:
4+
5+
* At least six characters long
6+
* contains a lowercase letter
7+
* contains an uppercase letter
8+
* contains a digit
9+
* only contains alphanumeric characters (note that `'_'` is not alphanumeric)

0 commit comments

Comments
 (0)