笔记
DuncanK
不想变懒虫的懒猪
展开
-
1 Python 判断回文串
###自己写的没参考别人的思路,对于偶数来说只需要分成两边判断是否相等即可,对于奇数的数字不需要判断中间那个,只需要判断两边的.截取之后直接对比,更简单的方法应该是直接反转字符串与自己对比看是不是一样```pythonclass Solution: def isPalindrome(self, x: int) -> bool: x = str(x) n = len(x) if n % 2 == 0: x_lower原创 2022-03-21 10:39:32 · 1229 阅读 · 0 评论 -
VM invalid opcode
Error: VM Exception while processing transaction: invalid opcode解决方法,明天早上起来试试New opcodes were introduced in Constantinople/St. Petersburg hard fork. Solidity compiler was able to produce such opcod...原创 2020-04-09 00:34:08 · 1779 阅读 · 3 评论