摘要:
Nocol org.springframework.context.ApplicationContextException: Unable to start web server; nested exception is org.springframework.boot.web.server.Web 阅读全文
摘要:
反转之后如果溢出则做逆运算不成立 new = old * 10 + x % 10 // 正序运算 old = (new - x % 10)/10 // 逆序运算 代码 class Solution { public int reverse(int x) { // 最终要返回的反转数 int rev 阅读全文