Leetcode Weekly Contest 414

作者: oin1104 (是oin的說)   2024-09-08 13:01:33
家人們
我這次3000名
徽章++
q1
把日期的字串 變成 二進位的字串
思路
照做
```cpp
class Solution {
public:
string convertDateToBinary(string date)
{
int a = stoi(date.substr(0,4));
int b = stoi(date.substr(5,2));
int c = stoi(date.substr(8,2));
string res ;
string tmp;
while(a>0)
{
tmp.push_back((a&1)+'0');
a>>=1;
}
for(int i = tmp.size()-1 ; i >= 0 ; i
作者: sustainer123 (caster)   2024-09-08 13:09:00
我11000 幹
作者: Furina (芙寧娜)   2024-09-08 13:12:00
我好崇拜你們
作者: sixB (6B)   2024-09-08 13:12:00
你好厲害
作者: wu10200512 (廷廷)   2024-09-08 13:15:00
你好強
作者: dont   2024-09-08 13:30:00
大師

Links booklink

Contact Us: admin [ a t ] ucptt.com