相信做过ppt演讲的人会有这样的体会:有的时候希望全屏ppt时不要直接霸占全部的屏幕,至少希望能够看到任务栏,这样就可以仍然方便切换程序。 如何实现呢? 很简单,看下图吧:) https://www.ellenfinkelstein.com/pptblog/using-window-instead- ...
分类:
其他好文 时间:
2019-07-02 00:25:53
阅读次数:
2447
题目链接 : https://leetcode cn.com/problems/recover binary search tree/ 题目描述: 二叉搜索树中的两个节点被错误地交换。 请在不改变其结构的情况下,恢复这棵树。 示例: 示例 1: 示例 2: 进阶: 使用 O(n) 空间复杂度的解法很 ...
分类:
其他好文 时间:
2019-06-25 10:01:31
阅读次数:
113
端午节我写了一个项目,帮助你学习HTTP接口测试。 GitHub地址: "https://github.com/defnngj/learning API test" 整个项目基于Flask和 Requests实现。 Flask是Python主流的Web框架,以简单著称,它可非常方便的实现API,整个 ...
分类:
Web程序 时间:
2019-06-24 22:35:22
阅读次数:
154
Write a program that outputs the string representation of numbers from 1 to n. But for multiples of three it should output “Fizz” instead of the numbe ...
分类:
其他好文 时间:
2019-06-21 22:22:33
阅读次数:
119
const result = Number('55px'); // isNaN "NaN" console.log(isNaN(result)); // true console.log(isNaN('I am a String!')); // true -- NOT Good console.lo... ...
分类:
其他好文 时间:
2019-06-18 21:24:16
阅读次数:
122
Detailed discussion here. Detailed discussion here. Try this instead for 'only' scrolling vertical.(auto scroll needs to be false before it will accep ...
1 class Solution: 2 def duplicateZeros(self, arr: List[int]) -> None: 3 """ 4 Do not return anything, modify arr in-place instead. 5 """ 6 n = len(arr ...
分类:
其他好文 时间:
2019-06-16 13:15:48
阅读次数:
87
1.包管理器的安装 1.ctrl+~打开sublime控制台 输入以下代码: 2.包管理器的命令 ...
分类:
其他好文 时间:
2019-06-14 14:18:39
阅读次数:
115
使用kubectl进行增、删、查、改等常用操作 查看kubectl命令帮助 kubectl -h 可以看到,命令帮助很人性化的帮我们对各个命令做了划分,让我们可以更好的学习和使用,下面我们开始使用kubectl命令在命令行下测试相关命令的用法 创建一个应用程序 1 创建一个应用程序,我们使用 "ku ...
分类:
Web程序 时间:
2019-06-10 00:15:00
阅读次数:
137
错误: error C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. 的处理方法 为什么会报这个错?因为strcpy这个函数不安全,即会造成栈溢出。 在VS2013下如 ...
分类:
其他好文 时间:
2019-06-07 20:55:03
阅读次数:
110