1 /** 2 * Return an array of arrays. 3 * The sizes of the arrays are returned as *columnSizes array. 4 * Note: Both returned array and *columnSizes ar... ...
分类:
其他好文 时间:
2018-12-01 11:11:35
阅读次数:
252
最近在测试CDN服务质量问题,测试过程中返回了一些不同的状态码,当然有一些常用的,也有一些不常用的。最奇葩的是在使用curl命令的时候出现000状态码,问了很多同事,对这个000的反应跟新事物是的。 一、生产环境常见的HTTP CODE 生产环境常见的HTTP状态码列表(List of HTTP s ...
分类:
Web程序 时间:
2018-11-24 11:33:55
阅读次数:
560
package com.sjfl.main; import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; impor... ...
分类:
编程语言 时间:
2018-11-22 00:12:48
阅读次数:
123
1. Question: 167. Two Sum II - Input array is sorted url : https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/ Given an array of integers ...
分类:
其他好文 时间:
2018-11-20 00:02:17
阅读次数:
189
1. vcs_save_restore_new.o: relocation R_X86_64_32S [Ubuntu 18.04] $VCSHOME/linux64/lib/vcs_save_restore_new.o: relocation R_X86_64_32S against undefin ...
分类:
其他好文 时间:
2018-11-03 01:49:29
阅读次数:
641
在scss中除了可以定义变量,具有@extend和@mixins等特性之外,还自备了一系列的函数功能。 scss本身带有大量的内置函数,具体可以参阅官网函数模块。 一、字符串函数 unquote($string):只能删除字符串最前和最后的引号(双引号或单引号),而无法删除字符串中间的引号。如果字符 ...
分类:
Web程序 时间:
2018-10-30 10:19:30
阅读次数:
4539
DescriptionGiven an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific target number.Th... ...
分类:
其他好文 时间:
2018-10-24 22:15:00
阅读次数:
157
Given a non empty, singly linked list with head node head, return a middle node of linked list. If there are two middle nodes, return the second middl ...
分类:
其他好文 时间:
2018-10-22 14:54:43
阅读次数:
100
Implement int sqrt(int x). Compute and return the square root of x, where x is guaranteed to be a non-negative integer. Since the return type is an in ...
分类:
其他好文 时间:
2018-10-20 23:53:22
阅读次数:
288
Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once. Find all the elements of [1, n] ...
分类:
移动开发 时间:
2018-10-13 22:45:30
阅读次数:
167