Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
Duplicated from
NAIL-Group/ClawBench
TIGER-Lab
/
ClawBench
like
0
Follow
TIGER-Lab
524
Tasks:
Text Generation
Question Answering
Other
Modalities:
Tabular
Text
Formats:
parquet
Languages:
English
Size:
< 1K
ArXiv:
arxiv:
2604.08523
Tags:
benchmark
leaderboard
agent-benchmark
llm-benchmark
web-agents
browser-agent
+ 8
Libraries:
Datasets
pandas
Polars
+ 1
License:
apache-2.0
Dataset card
Data Studio
Files
Files and versions
xet
Community
1
main
ClawBench
/
extra_info
/
266
/
solution_code.py
AgPerry
Duplicate from NAIL-Group/ClawBench
c6bec71
1 day ago
raw
Copy download link
history
blame
contribute
delete
Safe
300 Bytes
class
Solution
:
def
twoSum
(
self, nums:
list
[
int
], target:
int
) ->
list
[
int
]:
seen = {}
for
i, num
in
enumerate
(nums):
complement = target - num
if
complement
in
seen:
return
[seen[complement], i]
seen[num] = i
return
[]