AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
buckets.py
根目录
/
benchmarks
/
e2e
/
tasks
/
diagnose-floor-division
/
workdir
/
buckets.py
1
def bucket_of(value, width):
2
"""Index of the histogram bucket holding value; buckets are floors."""
3
return int(value / width)
4
4 lines
PYTHON