摘要: 第一题 5185. 存在连续三个奇数的数组 class Solution { public: bool threeConsecutiveOdds(vector<int>& arr) { int size = arr.size(); for(int i = 0; i + 2 < size; ++i) 阅读全文
posted @ 2020-08-16 23:53 machine_gun_lin 阅读(149) 评论(0) 推荐(0)