Commit 5adbd8d5 authored by 24OI-bot's avatar 24OI-bot
Browse files

style: format markdown files with remark-lint

parent ee0242a8
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -84,7 +84,8 @@ struct student {
  bool operator<(const student& a) const {
    return score < a.score || (score == a.score && name > a.name);
    // 上面省略了 this 指针,完整表达式如下:
    // this -> score < a.score || (this -> score == a.score && this -> name > a.name);
    // this -> score < a.score || (this -> score == a.score && this -> name >
    // a.name);
  }
};
priority_queue<student> pq;