#1 – Hacking Tutorial: Tech Tips and Hacking Tricks Sometimes, perfect English isn’t everything. Hacking Tutorial is an example of when the writing sk ...
分类:
Web程序 时间:
2019-04-20 09:59:17
阅读次数:
1125
为什么使用 css variables easier to get started (no transpiling) have access to the DOM 1.local scopes 2.change width Js 3.ideal for responsiceness perfect ...
分类:
Web程序 时间:
2019-03-15 12:02:47
阅读次数:
254
You are given a perfect binary tree where all leaves are on the same level, and every parent has two children. The binary tree has the following defin ...
分类:
其他好文 时间:
2019-03-11 11:54:35
阅读次数:
186
https://blog.csdn.net/xinqrs01/article/details/55095134 https://www.cnblogs.com/grandyang/p/4800552.html 当前的数一定可以通过之前的数加上数的平方获得 ...
分类:
其他好文 时间:
2019-03-07 17:56:20
阅读次数:
151
完美转发是c++11 引入右值引用之后,在template 中的延伸. 顾名思义,完美转发是将参数不改变属性的条件下,转发给下一个函数. 因为普通函数的参数一旦具名,始终都是lvalue. 如果把rvalue转发到下一个函数上的参数中,还是rvalue.这就是完美转发的目的。 那么如何支持完美转发呢 ...
分类:
编程语言 时间:
2019-02-27 17:38:29
阅读次数:
228
This problem was asked by Microsoft. A number is considered perfect if its digits sum up to exactly 10. Given a positive integer n, return the n-th pe ...
分类:
其他好文 时间:
2019-02-06 09:26:03
阅读次数:
187
在前面的一篇文章中《如何绕过博客园对 script 的屏蔽》,我看到了在页面执行自定义的脚本的希望,自己试验了一下,写了个简单的测试,如下: 脚本代码: 发现不管把这个脚本代码放到什么地方,好像都执行不了啊!~好像不是这么回事啊,再次参考了文章,文章里面的思路是对的,可能不适合我,那我就找一个适合我 ...
分类:
其他好文 时间:
2019-02-02 17:35:02
阅读次数:
242
其实就是记录了一下用法,毕竟不懂前端。 主要记录下来后端如何调用的。 app.py index.html base.html ...
分类:
Web程序 时间:
2019-02-02 10:43:47
阅读次数:
251
Given a positive integer n, find the least number of perfect square numbers (for example, 1, 4, 9, 16, ...) which sum to n. Example 1: Example 2: ...
分类:
其他好文 时间:
2019-01-16 16:36:48
阅读次数:
226
public class Solution { / @param n: a positive integer @return: An integer / public int numSquares(int n) { if(n ...
分类:
其他好文 时间:
2019-01-16 15:33:26
阅读次数:
169