ARTS:
- Algrothm: leetcode算法题目
- Review: 阅读并且点评一篇英文技术文章
- Tip/Techni: 学习一个技术技巧
- Share: 分享一篇有观点和思考的技术文章
Algorithm
【leetcode】
https://leetcode.com/problems/two-sum/
1)problem
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 input would have exactly one solution, and you may not use the same element twice.
Example:
Given nums = [2, 7, 11, 15], target = 9,
Because nums[0] + nums[1] = 2 + 7 = 9,
return [0, 1].
2)answer
1、使用字典的形式解题
1、声明字典
2、判断断target - num[i]的索引值不在在字典中就添加到字典里 dict[nums[i]] = i
3、如果在字典里就把被得到的索引值和当前索引值返回 [dict[target - nums[i]],i]
3)solution
class Solution(object):
def twoSum(self, nums, target):
if len(nums) <= 1:
return False
buff_dict = {}
for i in range(len(nums)):
if nums[i] in buff_dict:
return [buff_dict[nums[i]], i]
else:
buff_dict[target - nums[i]] = i
Review
【漏洞挖掘】Web应用程序的敏感信息-隐藏目录和文件
1)场景
Web应用程序的敏感信息-隐藏目录和文件
2)问题难点
敏感信息挖掘方法
3)解决问题的方法
···
0x1、场景
1.1、GIT
1.2、Subversion (SVN)
1.3、IDE项目文件
JetBrains IDE - IntelliJ IDEA,WebStorm,PHPStorm,RubyMine
NetBeans IDE
1.4、其他配置文件
0x2、工具
0x3、参考
···
4)方法细节
Web应用程序的敏感信息-隐藏目录和文件
https://www.cnblogs.com/17bdw/p/10703808.html
Tip
【安全开发】备份文件-域名+日期扫描
1)场景
搜集敏感信息-备份文件
2)问题难点
备份文件常用备份名外思路
3)解决思路
根据报错页面的备份文件名格式生成日期文件,尝试遍历日期下载
4)方法细节
备份文件-域名+日期扫描
https://www.cnblogs.com/17bdw/p/10395791.html
Share
【业务】极客时间-左耳听风-程序员攻略-系统知识
1)场景
系统知识学习
2)问题难点
系统知识学习的资源
3)解决思路
程序员练级攻略:系统知识
- 网络编程知识
- Linux网络编程与协议分析知识
- C10K 问题
- 实践项目
- 小结
4)方法细节
极客时间-左耳听风-程序员攻略-系统知识