35. Search Insert Position Easy Easy Easy Given a sorted array and a target value, return the index if the target is found. If not, return the index w ...
分类:
其他好文 时间:
2019-09-22 13:14:44
阅读次数:
101
28. Implement strStr() Easy Easy Easy Implement strStr(). Return the index of the first occurrence of needle in haystack, or -1 if needle is not part ...
分类:
其他好文 时间:
2019-09-20 16:30:14
阅读次数:
83
楔子 如果有这样一个列表,让你从这个列表中找到66的位置,你要怎么做? l = [2,3,5,10,15,16,18,22,26,30,32,35,41,42,43,55,56,66,67,69,72,76,82,83,88] 你说,so easy! l.index(66)... 我们之所以用ind ...
分类:
编程语言 时间:
2019-09-16 19:16:00
阅读次数:
82
博文目录一、Easy虚拟化专用网需要解决的问题是什么?二、如何在路由器上实现Easy虚拟专用网?三、配置路由器上实现Easy虚拟专用网由于“VirtualPrivateNetwork”(请看首字母,就知道是什么咯)是敏\感词汇,所以在博文中使用它的中文名字“虚拟专用网”来代替。在之前写过了Cisco路由器IPSec虚拟专用网原理与详细配置;Cisco的ASA防火墙和路由器上实现IPSec虚拟专用网
分类:
系统相关 时间:
2019-09-16 09:36:48
阅读次数:
196
现有n个Zack,每个Zack有一个一个能力值,从这n个Zack中选出k个,使他们的最大公约数的值最大 【输入格式】 第一行有一个整数n,代表有n个Zack 第二行n个整数ai,代表每个Zack的能力值 【输出格式】 一共n行,第n行为k=i情况下的能力值的最大公因数 【样例输入】 4 1 2 3 ...
分类:
其他好文 时间:
2019-09-15 16:57:57
阅读次数:
77
9. Palindrome Number Easy Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example ...
分类:
其他好文 时间:
2019-09-15 01:20:34
阅读次数:
92
博文目录一、拓扑图如下:1、需求分析:2、开始配置:3、验证:一、拓扑图如下:1、需求分析:1)PC1和PC2可以ping通dmz区域的172.16.1.100服务器(web服务器)2)PC1和PC2可以ping通202.16.3.1,需要使用Easy-IPNAT3)202.96.2.1主机使用http协议访问dmz发布到untrust区域服务器的IP地址202.96.1.502、开始配置:内网P
分类:
其他好文 时间:
2019-09-14 14:05:49
阅读次数:
120
实验吧web之Forms 地址:http://www.shiyanbar.com/ctf/1819 flag值:ctf{forms_are_easy} 解题步骤: 1、查看页面源代码,从中发现"value=0",并且在框内输入任何东西都没有反应 2、打开调试器,找到"value=0"这个位置,把"v ...
分类:
Web程序 时间:
2019-09-14 01:08:48
阅读次数:
423
打开看到有三个文件: 三个文件内容如下: 通过 url 知道,访问一个文件需要知道:filename 跟 filehash 企图直接访问是不行的,想到了 burp 抓包,但是抓了半天没抓到,看了网上的 wp 是 模版注入 tornado 是一个 python 的模板,welcome.txt 中的 r ...
分类:
Web程序 时间:
2019-09-14 00:54:53
阅读次数:
637
1. Two Sum Easy Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each inp ...
分类:
其他好文 时间:
2019-09-13 22:25:49
阅读次数:
95