Each year some languages die out. Some say this is good because fewer languages would make communication easier and relieve people of the burden of le ...
分类:
其他好文 时间:
2021-03-02 12:23:31
阅读次数:
0
Given a string s of lower and upper case English letters. A good string is a string which doesn't have two adjacent characters s[i] and s[i + 1] where ...
分类:
其他好文 时间:
2021-02-22 12:38:24
阅读次数:
0
一、打开设置,找到时间和语言,切换到语言专栏 二、搜索ENGLISH,找到如图所示的语言,安装即可 三、如何切换中英文输入法 alt+shift 或者 win+空格 问题:为什么ctrl+shift切换无效? 原因:ctrl+shift的功能:切换同一种语言下的不同输入法。 ...
分类:
编程语言 时间:
2021-02-17 14:20:49
阅读次数:
0
Given a string s of '(' , ')' and lowercase English characters. Your task is to remove the minimum number of parentheses ( '(' or ')', in any position ...
分类:
其他好文 时间:
2021-02-09 12:12:28
阅读次数:
0
问题: 给定一组字符串,和一个结果字符串,使用0~9对字母进行编码。 使得字符串数组相加后,结果=结果字符串。 求是否可能存在这样的编码。 Each character is decoded as one digit (0 - 9). Every pair of different characte ...
分类:
其他好文 时间:
2021-02-08 12:21:04
阅读次数:
0
Part 1: 住处 Do you live in a house or a flat? Which is your favourite room in your house / flat? What do you like about the area that you live in? Is t ...
分类:
其他好文 时间:
2021-01-22 12:11:42
阅读次数:
0
1609. 链表的中间结点 中文English 给定一个带有头结点 head 的非空单链表,返回链表的中间结点。 如果有两个中间结点,则返回第二个中间结点。 样例 样例 1: 输入:1->2->3->4->5->null 输出:3->4->5->null 样例 2: 输入:1->2->3->4->5 ...
分类:
其他好文 时间:
2021-01-13 10:37:47
阅读次数:
0
272. 爬楼梯 II 中文English 一个小孩爬一个 n 层台阶的楼梯。他可以每次跳 1 步, 2 步 或者 3 步。实现一个方法来统计总共有多少种不同的方式爬到最顶层的台阶。 样例 Example 1: Input: 3 Output: 4 Explanation: 1 + 1 + 1 = ...
分类:
其他好文 时间:
2021-01-13 10:36:17
阅读次数:
0
关于spy-debugger 一站式页面调试、抓包工具。远程调试任何手机浏览器页面,任何手机移动端webview(如:微信,HybridApp等)。支持HTTP/HTTPS,无需USB连接设备。 Language: English 特性 1、页面调试+抓包2、操作简单,无需USB连接设备3、支持HT ...
分类:
移动开发 时间:
2021-01-08 10:42:04
阅读次数:
0
删除DataFrame指定列有空值的行 1. `mydf.dropna(subset=['col1', 'col2'], inplace = True)` 2. ``` mydf = pd.DataFrame({ 'name' : ['Tom','Amy','John','George'], 'se ...
分类:
其他好文 时间:
2020-12-09 12:04:52
阅读次数:
4