mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-02-22 14:44:33 +01:00
fixing password gen and revenue retrieval 2 challenges
This commit is contained in:
@@ -24,5 +24,5 @@
|
||||
"side_effects": []
|
||||
},
|
||||
"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."
|
||||
"task": "Create a random password generator. The password should have between 8 and 16 characters and should contain at least one letter, number and symbol. 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."
|
||||
}
|
||||
|
||||
@@ -16,21 +16,22 @@
|
||||
".txt"
|
||||
],
|
||||
"should_contain": [
|
||||
"15",
|
||||
"112",
|
||||
"117",
|
||||
"204",
|
||||
"413",
|
||||
"2,014",
|
||||
"3,198",
|
||||
"4,046",
|
||||
"7,000",
|
||||
"11,759",
|
||||
"21,461",
|
||||
"24,578",
|
||||
"31,536",
|
||||
"53,823",
|
||||
"81,462"
|
||||
"15",
|
||||
"112",
|
||||
"117",
|
||||
"204",
|
||||
"413",
|
||||
"2,013",
|
||||
"2,014",
|
||||
"3,198",
|
||||
"4,046",
|
||||
"7,000",
|
||||
"11,759",
|
||||
"21,461",
|
||||
"24,578",
|
||||
"31,536",
|
||||
"53,823",
|
||||
"81,462"
|
||||
],
|
||||
"should_not_contain": []
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user