SQL Server 2008语句大全完整版 设置内存选项 --设置 min server memory 配置项 EXEC sp_configure N'min server memory (MB)',0 --设置 max server memory 配置项 EXEC sp_configure N' ...
分类:
数据库 时间:
2020-12-25 11:57:49
阅读次数:
0
原题链接:https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/ class Solution { public int lengthOfLongestSubstring(String s) { ...
分类:
其他好文 时间:
2020-12-25 11:54:02
阅读次数:
0
Given an array of integers, return the number of (contiguous, non empty) subarrays that have a sum divisible by . Example 1: Note: 1. `1 这道题给了一个数组,让返回 ...
分类:
编程语言 时间:
2020-12-25 11:49:15
阅读次数:
0
访问:http://xxxx/seeyon/htmlofficeservlet,看到 POC: POST /seeyon/htmlofficeservlet HTTP/1.1 Host: x.x.x.x Cache-Control: max-age=0 Upgrade-Insecure-Reques ...
分类:
Web程序 时间:
2020-12-25 11:46:31
阅读次数:
0
和某atcoder题的idea很像。 转化比较巧妙。 把两种学校的课程作为两维。 把平面划分成$(n+2)*(m+2)$个矩形。 把$x,y$作前缀和。 如果$x$有一个值$a$,则画一条$x=a$的线。 如果$y$有一个值$b$,则画一条$y=b$的线。 然后我们就要在这些直线的交点上选择一个矩形 ...
分类:
其他好文 时间:
2020-12-24 11:39:23
阅读次数:
0
from selenium import webdriver # 成功导入第三方包 import time from selenium.webdriver.common.action_chains import ActionChains db = webdriver.Chrome() # 选择浏览器 ...
分类:
其他好文 时间:
2020-12-23 12:33:54
阅读次数:
0
程序员书库(ID:OpenSourceTop)编译l链接:https://www.aitrends.com/features/top-ai-books-for-summer-reading-in-2019/无论你想学什么,在互联网上都可以找到许多有用的资源,甚至很多都是免费的,你只需要投入时间和精力,不过话说回来,你很难在这些参吃不齐的课程里选择出自己想要的,一不留神还有可能走弯路今天,将和大家分
分类:
编程语言 时间:
2020-12-23 11:57:34
阅读次数:
0
/*Hatsune Miku 4ever!*/ #include <bits/stdc++.h> using namespace std; typedef long long ll; #define _for(i,a,b) for(int i = (a);i < b;i ++) #define _r ...
分类:
其他好文 时间:
2020-12-23 11:47:45
阅读次数:
0
首先用我最常用的PHP来做下测试 <?php function test_encrypt($fun, $max) { $begin = microtime(TRUE); $pwdpre = time(); for ($i = 1; $i <= $max; $i++) { $fun($pwdpre . ...
分类:
编程语言 时间:
2020-12-23 11:36:13
阅读次数:
0
服务器端: PC1,192.168.10.10 客户机端: PC2. 192.168.10.20 1、在PC1服务器端安装Apache服务 [root@PC1 ~]# yum install httpd -y Loaded plugins: langpacks, product-id, subscr ...
分类:
Web程序 时间:
2020-12-23 11:34:38
阅读次数:
0