Commit 092b8062 authored by 24OI-bot's avatar 24OI-bot
Browse files

style: format markdown files with remark-lint

parent 3aa1342a
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -97,8 +97,7 @@ struct student {
  string name;
  int score;
};
bool operator<(const student&a,const student&b)
{
bool operator<(const student& a, const student& b) {
  return a.score < b.score || (a.score == b.score && a.name > b.name);
}
priority_queue<student> pq;