Skip to content

Commit cc806da

Browse files
committed
【update】笔试-iHandy-180927
1 parent 9140e68 commit cc806da

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

D-笔试面经/笔试-iHandy-180927.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,12 @@ s.sort(reverse=True)
3939

4040
ans = ''.join(s)
4141

42-
print(int(ans))
42+
print(int(ans)) # 转 int
4343
```
4444

4545
**自定义排序**(80%)
46+
- 代码应该没什么问题,最后把结果转成 `int/long long` 应该就能 AC 了——可能有一个用例是全 0
47+
- 上面用贪心的时候还记得转 int,这里就忘了...
4648
```C++
4749
#include <iostream>
4850
#include <string>
@@ -72,7 +74,7 @@ int main() {
7274
for (int i=0; i < n; i++)
7375
cin >> ns[i];
7476

75-
cout << foo(ns);
77+
cout << foo(ns); // 这里把结果转成整型应该就行了
7678
return 0;
7779
}
7880
```

0 commit comments

Comments
 (0)