摘要: adb打开系统设置的命令 https://www.cnblogs.com/candyzhmm/p/11427960.html 阅读全文
posted @ 2021-02-28 22:54 千心 阅读(40) 评论(0) 推荐(0) 编辑
摘要: class Solution { public: bool isValid(string s) { int n = s.size(); if (n % 2 == 1) { return false; } //Hash Table unordered_map<char, char> pairs = { 阅读全文
posted @ 2021-02-28 19:38 千心 阅读(26) 评论(0) 推荐(0) 编辑