Add categories skill tree (#5295)

Signed-off-by: Merwane Hamadi <merwanehamadi@gmail.com>
This commit is contained in:
merwanehamadi
2023-09-21 17:39:16 -07:00
committed by GitHub
parent f4e7b1c61c
commit f67a352937
16 changed files with 588 additions and 82 deletions

View File

@@ -23,6 +23,6 @@
"difficulty": "basic",
"side_effects": []
},
"name": "PasswordGenerator_Easy",
"name": "PasswordGenerator",
"task": "Create a random password generator. The password should have between 8 and 16 characters and should contain letters, numbers and symbols. The password should be printed to the console. The entry point will be a python file that can be run this way: python password_generator.py [--len x] where x is the length of the password. If no length is specified, the password should be 8 characters long. The password_generator can also be imported as a module and called as password = password_generator.generate_password(len=x). Any invalid input should raise a ValueError."
}