File size: 380 Bytes
2756582
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
[
    {
        "title": "Find Max Number",
        "question": "请编写一个函数,该函数接收一个整数列表,并返回该列表的最大值",
        "standard_answer": "def find_max(lst):\n\treturn max(lst)",
        "analysis": "在这个问题中,我们需要使用Python的内置函数max来找到列表的最大值。",
        "language": "python"
    }
]