[TOC] #### 1.图片下载 ```Python# 百度图片:http://image.baidu.com/# 搜狗图片:https://pic.sogou.com/``` ```Python# 图片爬取:1).寻找图片下载的url: elements与network抓包2).浏览器中访问ur ...
分类:
其他好文 时间:
2019-09-17 09:14:25
阅读次数:
89
Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral order. Example 1: Example 2: ...
分类:
其他好文 时间:
2019-09-16 23:48:01
阅读次数:
120
What's in a name? In this lesson, I'll explain the concept of naming interactive elements for screen reader users, including forms, buttons, and links ...
分类:
数据库 时间:
2019-09-15 17:06:35
阅读次数:
137
①英文题目 Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: The number of elements initialized in nums1 a ...
分类:
编程语言 时间:
2019-09-15 01:12:03
阅读次数:
89
The only difference between easy and hard versions is the number of elements in the array. You are given an array aa consisting of nn integers. In one ...
分类:
其他好文 时间:
2019-09-13 10:22:36
阅读次数:
101
使用google浏览器写css 1.使用pychram,创建一个html界面,使用Google运行,打开设置 更多工具 开发者工具 2.选中Elements,可看到html代码 3.编辑body,选中body,出现三个点(设置),点击Edit as HTML,可写标签,例如div 4.新增一个div ...
分类:
编程语言 时间:
2019-09-12 18:27:08
阅读次数:
115
A subarray is a contiguous portion of an array. Given an array of integers, you must determine the number of distinct subarrays that can be formed hav ...
分类:
编程语言 时间:
2019-09-12 09:43:08
阅读次数:
129
Given an unsorted array, find the maximum difference between the successive elements in its sorted form. Return 0 if the array contains less than 2 el ...
分类:
其他好文 时间:
2019-09-11 09:25:35
阅读次数:
77
最长公共子序列不需要字符连续出现和字串不同 //LCS 求最长公共子串模板题 Common Subsequence 描述 A subsequence of a given sequence is the given sequence with some elements (possible none ...
分类:
其他好文 时间:
2019-09-10 23:42:15
阅读次数:
88
前戏 到目前为止,我们已经学过了JavaScript的一些简单的语法。但是这些简单的语法,并没有和浏览器有任何交互。 也就是我们还不能制作一些我们经常看到的网页的一些交互,我们需要继续学习BOM和DOM相关知识。 JavaScript分为 ECMAScript,DOM,BOM。 BOM(Browse ...
分类:
Web程序 时间:
2019-09-10 19:29:50
阅读次数:
120