ARTS:

  • Algrothm: leetcode算法题目
  • Review: 阅读并且点评一篇英文技术文章
  • Tip/Techni: 学习一个技术技巧
  • Share: 分享一篇有观点和思考的技术文章

Algorithm

【leetcode】21. Merge Two Sorted Lists

https://leetcode.com/problems/merge-two-sorted-lists/

1)problem

Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.

Example:

Input: 1->2->4, 1->3->4

Output: 1->1->2->3->4->4

2)answer

链表题目,两个链表找出最小的值插入在最前面,然后合并起来。

3)solution

# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution:
    def mergeTwoLists(self, l1: ListNode, l2: ListNode) -> ListNode:
        curr = dumy = ListNode(0)

        while l1 and l2:
            if l1.val < l2.val:
                curr.next = l1
                l1 = l1.next
            else:
                curr.next =l2
                l2 = l2.next
            curr = curr.next
        curr.next = l1 or l2

        return dumy.next

        

Review

【漏洞挖掘】利用工具破解HTTP身份验证的多种方法

https://www.hackingarticles.in/multiple-ways-to-exploiting-http-authentication/

1)场景

利用Apache配置HTTP验证

2)问题难点

  • 使用Apache http验证复现场景

  • 使用工具进行破解演示

3)解决问题的方法

讲诉多个工具破解HTTP验证的方法

4)方法细节

利用工具破解HTTP身份验证的多种方法

https://www.cnblogs.com/17bdw/p/10793471.html

Tip

【安全开发】Pocsuite3--编写破壳CVE-2014-6271_Shellshock的POC

1)场景

快速验证CVE-2014-6271 Shellshock漏洞

2)问题难点

批量验证

3)解决思路

使用现有框架Pocsuite3,搭建环境测试公开路径。

4)方法细节

Pocsuite3--编写破壳CVE-2014-6271_Shellshock的POC
https://www.cnblogs.com/17bdw/p/10926431.html

Share

【业务】极客时间-左耳听风-程序员攻略-数据库

1)场景

数据库选用和了解

2)问题难点

数据库知识学习

3)解决思路

  • 关系型数据库
  • NoSQL 数据库
  • 各种 NoSQL 数据库

4)方法细节

极客时间-左耳听风-程序员攻略-数据库

https://www.cnblogs.com/17bdw/p/10852715.html

最新文章

  1. wget: unable to resolve host address的解决方法
  2. SQLServer性能调优3之索引(Index)的维护
  3. redis linux安装与简单集群配置
  4. webpack处理非模块化的几方法
  5. xss跨站攻击测试代码
  6. Ural 1741 Communication Fiend(隐式图+虚拟节点最短路)
  7. CSS3实现翻转菜单效果
  8. scope的参数范围
  9. 关于C语言中用Keil软件制作Lib库文件的几点经验
  10. 正则表达式匹配(python)
  11. Spring MVC + Spring MongoDB + Querydsl 通过maven整合实例
  12. 客户端上显示csdn上的各类别下的的文章列表 (制作csdn app 三)
  13. Java常见算法整理
  14. 两个Integer变量a和b,值相等,a==b等于多少?
  15. NGS NGS ngs(hisat,stringtie,ballgown)
  16. Loadrunner&#160;脚本开发-soap_request函数介绍及WebService接口测试
  17. SVN的安装
  18. Kafka.net使用编程入门(一)
  19. C语言打印100到200之间的素数
  20. Activity猫的一生-故事解说Activity生命周期

热门文章

  1. flink相关
  2. Http 缓存剖析
  3. login.exp
  4. 解压 .tar.xz 格式的压缩文件
  5. Codeforces Round #470 (rated, Div. 1, based on VK Cup 2018 Round 1) 923D 947D 948E D. Picking Strings
  6. P2215 [HAOI2007]上升序列 DP
  7. 015_linux驱动之_signal
  8. Self install windows service in .NET c#
  9. C语言学习笔记10-结构体、枚举、联合体
  10. c++ 数据类型长度