经典dp问题 class Solution { public int maxValue(int[][] grid) { int m=grid.length,n=grid[0].length; for(int i=0;i<m;i++){ for(int j=0;j<n;j++){ if(i==0&&j ...
分类:
其他好文 时间:
2020-07-15 15:48:57
阅读次数:
52
一、echarts配置项如下: var option = { animation: true, title: {}, tooltip: { showDelay: 0, }, xAxis: { type: 'value', }, grid: { top: '20%', bottom: '20%' }, ...
分类:
其他好文 时间:
2020-07-15 15:18:27
阅读次数:
116
Unique Paths II (M) 题目 A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either ...
分类:
其他好文 时间:
2020-07-14 09:17:23
阅读次数:
72
##使用方法 用css中的display:none方法; 用chrome浏览器,右键审查,获得css路径,在按右键,审查,copy-selector; 使用stylish等插件; ###虎扑css .hp-threeNav, body > div.hp-header.hp-header-A, #ta ...
分类:
Web程序 时间:
2020-07-11 17:39:56
阅读次数:
104
from selenium import webdriverfrom selenium.webdriver.support.wait import WebDriverWaitfrom selenium.webdriver.support import expected_conditionsclass ...
分类:
其他好文 时间:
2020-07-10 21:25:19
阅读次数:
87
一、@FindBy和@CacheLookup用法 代码实例 package page; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.su ...
分类:
数据库 时间:
2020-07-10 19:31:53
阅读次数:
344
1.grid布局实现(一) .father{ display:grid; align-item:center; justify-items:center; } 2.grid布局实现(二) .father{ display:grid; align-item:center; justify-conten ...
分类:
Web程序 时间:
2020-07-10 13:11:05
阅读次数:
90
webdriver options常用参数 options.add_argument('--disable-infobars') # 禁止策略化options.add_argument('--no-sandbox') # 解决DevToolsActivePort文件不存在的报错options.add ...
分类:
Web程序 时间:
2020-07-10 11:44:23
阅读次数:
149
import warnings from selenium.webdriver.remote.webdriver import WebDriver as RemoteWebDriver from .remote_connection import ChromeRemoteConnection fro ...
分类:
其他好文 时间:
2020-07-10 11:25:17
阅读次数:
76
1.login.py # -*- coding: utf-8 -*- from selenium import webdriver from time import sleep from selenium.webdriver.common.action_chains import ActionCha ...
分类:
编程语言 时间:
2020-07-10 09:28:52
阅读次数:
97