摘要:
更新Xcode10后原有工程编译出错,library not found for -lstdc++.6.0.9。 原因是Xcode 不再支持 libstdc++。 解决办法:在Bulid Settings下 C++ Standard Library中设置好 libc++;在TARGETS/GENER 阅读全文
摘要:
Reverse digits of an integer. Example1: x = 123, return 321Example2: x = -123, return -321 1 class Solution { 2 public: 3 int reverse(int x) { 4 int n 阅读全文