12 2020 档案
摘要:这场比赛的题都是老套路,但是由于太久没刷题疯狂写bug…… 比赛链接 传送门 重新格式化电话号码 思路 直接模拟 代码 class Solution { public: string reformatNumber(string number) { string str, ans; for(auto
阅读全文
摘要:A题 Favorite Sequence 题意 有一个长度为n的数组a,将a按照1,n,2,n−1,…的数序摆放得到数组b,现在给你数组b,求数组a。 思路 双指针扫一遍即可。 代码 #include <bits/stdc++.h> using namespace
阅读全文