AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
verify.sh
根目录
/
benchmarks
/
e2e
/
tasks
/
palindrome
/
verify.sh
1
set -e
2
python3 - <<'PY'
3
import palindrome
4
assert palindrome.is_palindrome("Race car") is True
5
assert palindrome.is_palindrome("A man, a plan, a canal: Panama") is True
6
assert palindrome.is_palindrome("hello") is False
7
PY
8
8 lines
BASH