Updating Turbo (#343)

Co-authored-by: Luke <2609441+lc0rp@user.noreply.github.com>
This commit is contained in:
Luke
2023-08-31 07:09:41 -04:00
committed by GitHub
parent 7fd7ac5ce0
commit 595e04def1
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "TestPasswordGenerator_Easy",
"category": ["code"],
"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).",
"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.",
"dependencies": ["TestWriteFile"],
"cutoff": 90,
"ground": {