const _rank = array => {
  // 补全代码\n            
  return array.sort((a,b)=>(b.chinese+b.math+b.english) - (a.chinese+a.math+a.english))
}