摘要: 题面: 题解:从小到大排序,取相邻的最小差即可。 代码: class Solution { public: int findMinDifference(vector<string>& t) { vector<int>res; int n=t.size(); if(n>1440)return 0; f 阅读全文
posted @ 2022-01-18 00:42 cumtljz 阅读(28) 评论(0) 推荐(0) 编辑