edu-assistant / examples /coding_problems.json
Arcadia822's picture
feat: :sparkles: Coding Problem Analysis Launch!
2756582
Raw
History Blame
380 Bytes
[
{
"title": "Find Max Number",
"question": "请编写一个函数,该函数接收一个整数列表,并返回该列表的最大值",
"standard_answer": "def find_max(lst):\n\treturn max(lst)",
"analysis": "在这个问题中,我们需要使用Python的内置函数max来找到列表的最大值。",
"language": "python"
}
]