1.转义符(\) 转义符\赋予了一个字符一个特殊的意义,如n变为了\n就表示换行符 1)python中的转义 #在字符串前加r表示取消字符串中的所有转移 print("C:\a.txt") print(r"C:\a.txt") 输出: C:.txt C:\a.txt View Code #在转义符\ ...
分类:
编程语言 时间:
2020-11-08 17:14:26
阅读次数:
21
for (var m = 0; m < oneList.length; m++) { $('#grid tr').find('td:eq('+oneList[m]+')').hide(); } 其中oneList里面存储的是指定列的列数,也就是列坐标 ...
分类:
Web程序 时间:
2020-11-07 16:39:59
阅读次数:
24
端口扫描 174.140端口扫描结果: 174.141端口扫描结果: Weblogic漏洞扫描 174.140的7001端口是Weblogic的端口,用Weblogic漏洞扫描工具进行扫描: 找到了管理后台,尝试了简单的口令爆破,木有成功,另外还发现了SSRF漏洞和Java反序列化漏洞,SSRF漏洞 ...
分类:
Web程序 时间:
2020-11-07 16:30:13
阅读次数:
36
题意: 拓扑排序,输出字典序最小的。 思路:优先队列优化。 #include <iostream> #include <vector> #include <queue> #include<string.h> using namespace std; int n, m; const int N=1e5 ...
分类:
编程语言 时间:
2020-10-29 10:24:45
阅读次数:
26
方法1:ps1免杀 共五步 总述:主要就是[Byte[]]$var_code换一种编码,然后改掉关键词,比如函数名,变量名。 1.CS生成ps1 主要改:[Byte[]]$var_code那一行 Set-StrictMode -Version 2 $DoIt = @' function func_g ...
分类:
系统相关 时间:
2020-10-27 11:47:01
阅读次数:
47
题:http://acm.hdu.edu.cn/showproblem.php?pid=6230 题意:求一个字符串中(长度<=5e5)中指定字符串个数; 指定字符串约束为:类似俩个回文串“镶嵌”,设有俩个回文串的回文中心位置分别为x和y(x<y),前者的回文半径涵盖的范围必须包含y ,同时后者的回 ...
分类:
其他好文 时间:
2020-10-21 20:33:08
阅读次数:
23
<template> <view :style="{width: windowWidth + 'px', height: windowHeight + 'px', 'background-color': '#000'}"> <view class="goback" @click="goback" : ...
分类:
移动开发 时间:
2020-10-18 10:01:49
阅读次数:
22
<div class="pst"> <div class="pin"> <div style="background-image:url(https://mat1.gtimg.com/pingjs/ext2020/qqindex2018/dist/img/qq_logo_2x.png)"><p>11 ...
分类:
Web程序 时间:
2020-10-10 17:13:29
阅读次数:
34
查询回文子串个数: #include<bits/stdc++.h> using namespace std; typedef long long LL; typedef pair<double,int> pii; const int N = 3e5+5; const int M = 1e6+5; c ...
分类:
其他好文 时间:
2020-10-05 22:16:55
阅读次数:
30
from turtle import * screensize(500,500) #【头部轮廓】 pensize(5) home() seth(0) pd() color('black') circle(20,80)#0 circle(200,30)#1 circle(30,60)#2 circle ...
分类:
其他好文 时间:
2020-09-23 23:00:13
阅读次数:
33