158. Read N Characters Given Read4 II - Call multiple times Given buf = "abc" read("abc", 1) // returns "a" read("abc", 2); // returns "bc" read("abc"... ...
分类:
其他好文 时间:
2018-08-17 01:19:18
阅读次数:
121
栈是一种后进先出的线性数据结构 1.栈的应用: (1)撤销--编辑器 (2)程序调用的系统栈--操作系统 (3)括号匹配--编译器(https://leetcode-cn.com/problems/valid-parentheses/description/) 给定一个只包括 '(',')','{' ...
分类:
其他好文 时间:
2018-08-17 00:39:58
阅读次数:
136
Given a string, find the number of different characters in it. Example For s = "cabca", the output should bedifferentSymbolsNaive(s) = 3. There are 3 ...
分类:
其他好文 时间:
2018-08-16 23:43:04
阅读次数:
438
今天在使用当前时间进行筛选数据时出现了RuntimeWarning: DateTimeField Coupon.valid_begin_date received a naive datetime (2018-08-16 20:51:40.135425) while time zone suppor ...
分类:
其他好文 时间:
2018-08-16 21:37:08
阅读次数:
1342
一:Nginx防盗链在nginx.conf中的server部分中添加如下代码location~^.+.(gif|jpg|png|swf|flv|rar|zip|doc|pdf|gz|bz2|jpeg|bmp|xls)${valid_referersnoneblockedserver_names.taobao.com.baidu.com.google.com.google.cn.soso.com;/
分类:
Web程序 时间:
2018-08-16 19:59:13
阅读次数:
262
Nginx防盗链编辑虚拟配置文件[root@100xuni1~]#vim/usr/local/nginx/conf/vhost/test.com.conf添加配置的内容location~*^.+\.(gif|jpg|png|swf|flv|rar|zip|doc|pdf|gz|bz2|jpeg|bmp|xls)${expires7d;valid_referersnoneblockedserver_
分类:
Web程序 时间:
2018-08-16 00:41:36
阅读次数:
276
Given a non-empty string s, you may delete at most one character. Judge whether you can make it a palindrome. Example 1: Example 2: Note: 题目思路就是正常的用tw ...
分类:
其他好文 时间:
2018-08-15 01:25:26
阅读次数:
168
pdf .js 问题一:报错 network.js:71 The provided value 'moz-chunked-arraybuffer' is not a valid enum value of type XMLHttpRequestResponseType.supportsMozChun ...
分类:
Web程序 时间:
2018-08-14 12:11:06
阅读次数:
808
不能相信前端传过来的任何数据 一定不能相信前端传过来的任何数据 绝对不能相信前端传过来的任何数据 @JsonFormat 时间必须是指定的格式(这里是接收参数格式,不是取数据来格式化) 注意:在 controller 层的方法接收参数时,使用 @Valid 注解表示当前方法的参数需要验证 每个验证注 ...
分类:
编程语言 时间:
2018-08-14 00:56:41
阅读次数:
156
Description: Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", w ...
分类:
其他好文 时间:
2018-08-13 19:39:32
阅读次数:
110