摘要:
一.关于Python多线程 Python解释器中可以同时运行多个线程,但是再任意时刻只能有一个线程在解释器运行。 Python虚拟机的访问是由全局解锁器(GIL)控制的,由GIL保证同时只有一个线程的运行。 执行方式如下: 1.设置GIL 2.切换进一个进程执行 3.执行下面操作中的一个 a.运行指 阅读全文
摘要:
Determine whether an integer is a palindrome. Do this without extra space. 题意:确定一个数字是否回文 思路:把数字倒过来,与原数字对比 这是leetcode中做的最顺利的一个题了,一次ac,当然是因为这个题太简单了。。。 阅读全文
摘要:
Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below 阅读全文