forked from Significant-Gravitas/AutoGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic code generation challenge (Significant-Gravitas#98)
- Loading branch information
1 parent
3a9dfa4
commit a9702e4
Showing
9 changed files
with
91 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# mypy: ignore-errors | ||
from typing import List, Optional | ||
|
||
|
||
def two_sum(nums: List, target: int) -> Optional[List[int]]: | ||
seen = {} | ||
for i, num in enumerate(nums): | ||
complement = target - num | ||
if complement in seen: | ||
return [seen[complement], i] | ||
seen[num] = i | ||
return None |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"name": "TestBasicCodeGeneration", | ||
"category": ["code", "iterate"], | ||
"task": "Create a two_sum function in a file called code.py. Given an array of integers, return indices of the two 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 = 9, Because nums[0] + nums[1] = 2 + 7 = 9, return [0, 1].", | ||
"dependencies": ["TestWriteFile"], | ||
"ground": { | ||
"answer": "The two_sum function coded properly.", | ||
"should_contain": ["[0, 1]", "[2, 5]", "[0, 3]"], | ||
"should_not_contain": [], | ||
"files": ["test.py"], | ||
"type": "execute_python_code" | ||
}, | ||
"info": { | ||
"difficulty": "novice", | ||
"description": "Tests ability for the agent to create the two_sum function.", | ||
"side_effects": [] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# mypy: ignore-errors | ||
from code import two_sum | ||
from typing import List | ||
|
||
|
||
def test_two_sum(nums: List, target: int, expected_result: List[int]) -> None: | ||
result = two_sum(nums, target) | ||
print(result) | ||
assert ( | ||
result == expected_result | ||
), f"AssertionError: Expected the output to be {expected_result}" | ||
|
||
|
||
if __name__ == "__main__": | ||
# test the trivial case with the first two numbers | ||
nums = [2, 7, 11, 15] | ||
target = 9 | ||
expected_result = [0, 1] | ||
test_two_sum(nums, target, expected_result) | ||
|
||
# test for ability to use zero and the same number twice | ||
nums = [2, 7, 0, 15, 12, 0] | ||
target = 0 | ||
expected_result = [2, 5] | ||
test_two_sum(nums, target, expected_result) | ||
|
||
# test for first and last index usage and negative numbers | ||
nums = [-6, 7, 11, 4] | ||
target = -2 | ||
expected_result = [0, 3] | ||
test_two_sum(nums, target, expected_result) |
Submodule gpt-engineer
updated
from 521d62 to bca191
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters