Skip to content

Latest commit

 

History

History
25 lines (14 loc) · 680 Bytes

File metadata and controls

25 lines (14 loc) · 680 Bytes

Iteration 1 - Basic password validation

Goal

Design and implement some code that validates a password.

The password will be provided by the user (as an argument of the method) and should return if the password is valid or not.

A valid password should meet the following criteria:

  • Have more than 8 charactersa
  • Contains a capital letter
  • Contains a lowercase
  • Contains a number
  • Contains an underscore

Technical requirements:

  • We want a method that answers if the password is valid or not.
  • We do not need to know the reason that the password is invalid

Please do not add your solution here as a comment - other candidates will be able to see it.