mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-25 18:04:28 +01:00
20 lines
933 B
JSON
20 lines
933 B
JSON
{
|
|
"name": "TestThreeSum",
|
|
"category": ["code", "iterate"],
|
|
"task": "Create a three_sum function in a file called code.py. Given an array of integers, return indices of the three numbers such that they add up to a specific target. You may assume that each input would have exactly one solution, and you may not use the same element twice. Example: Given nums = [2, 7, 11, 15], target = 20, Because nums[0] + nums[1] + nums[2] = 2 + 7 + 11 = 20, return [0, 1, 2].",
|
|
"dependencies": ["TestWriteFile", "TestBasicCodeGeneration"],
|
|
"cutoff": 60,
|
|
"ground": {
|
|
"answer": "The three_sum function coded properly.",
|
|
"should_contain": ["[0, 1, 2]", "[0, 2, 5]", "[0, 2, 3]"],
|
|
"should_not_contain": [],
|
|
"files": ["test.py"],
|
|
"type": "execute_python_code"
|
|
},
|
|
"info": {
|
|
"difficulty": "advanced",
|
|
"description": "Tests ability for the agent to create the three_sum function.",
|
|
"side_effects": []
|
|
}
|
|
}
|