Fork me on GitHub
摘要: 1640. 能否连接形成数组 使用哈希表 class Solution { public: bool canFormArray(vector<int>& arr, vector<vector<int>>& pieces) { unordered_map<int, int> dic; for (int 阅读全文
posted @ 2020-11-04 00:04 WalterJ726 阅读(97) 评论(0) 推荐(0) 编辑