这是数组
[
{
"contest_id":1,
"points":10
},
{
"contest_id":2,
"points":10
},
{
"contest_id":1,
"points":11
},
{
"contest_id":2,
"points":9
},
{
"contest_id":1,
"points":12
}
]
在上面包含对象列表的数组中,基于属性值的对象数组按contest_id
的升序排序,points
为降序。
输出:-
Contest_id points
1 12
1 11
1 10
2 10
2 9