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
/** * 获取当前时间 */ function getDate() { var date = new Date(); var year = date.getFullYear(); // 年 var month = formatTime(date.getMonth() + 1); // 月 var ...
分类:
编程语言 时间:
2021-02-22 11:49:28
阅读次数:
0
显示2016年2月份的日历print(calendar.month(2016,2)) 2016年为闰年In calendar.isleap(2016)OUt True 当前时间戳In time.time()OUt 145526477.661747 ...
分类:
其他好文 时间:
2021-02-19 13:32:28
阅读次数:
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
理解Serverless No silver bullet. - The Mythical Man-Month 许多年前,我们开发的软件还是C/S(客户端/服务器)和MVC(模型-试图-控制器)的形式,再后来有了SOA,最近几年又出现了微服务架构,更新一点的有Cloud Native(云原生)应用, ...
分类:
其他好文 时间:
2021-01-19 12:18:15
阅读次数:
0
当前日期: Sub 测试() Debug.Print Date End Sub 当前时间: Sub 测试() Debug.Print Date End Sub 几月: Sub 测试() Debug.Print Date Debug.Print Month(Date) & "月" End Sub 格式 ...
分类:
编程语言 时间:
2021-01-18 10:41:21
阅读次数:
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