Loading

摘要: 作为递归入门算法,我却仅仅学习了这题的递归解法,惭愧惭愧。今天来总结一下这道题的所有解法 1、递归解法 class Solution { public: int Fibonacci(int n) { //每3个一组,整成动态二维数组 // write code here if(n<=2){ retu 阅读全文
posted @ 2024-03-08 16:41 go__Ahead 阅读(15) 评论(0) 推荐(0)
摘要: ubuntu 配置ssh 1、查看ssh服务的开启状态 ps -e|grep ssh 2、如果终端没有返回 sshd,则需安装ssh-server sudo apt-get install openssh-server 3、启动服务 sudo /etc/init.d/ssh start 现在查看ss 阅读全文
posted @ 2024-03-07 15:18 go__Ahead 阅读(13) 评论(0) 推荐(0)
摘要: Myclass.h #pragma once #include<iostream> #include<Windows.h> #define SUCCESS 1 // 成功 #define ERROR -1 // 失败 #define MALLOC_ERROR -2 // 申请内存失败 #define 阅读全文
posted @ 2024-03-06 10:47 go__Ahead 阅读(20) 评论(0) 推荐(0)
摘要: 1、分别下载并安装两个版本的python 2、去安装的文件夹中将python.exe 和pythonw.exe改名加上版本号 3、将python.exe文件目录和当前目录下的Scripts目录都加到用户环境变量中去 重新安装pip 注:若遇到Scripts文件夹中没有pip,则在cmd中运行 pyt 阅读全文
posted @ 2024-01-31 19:28 go__Ahead 阅读(30) 评论(0) 推荐(0)
摘要: title: angr_ctf date: 2023-11-17 14:00:37 tags: CTF angr 的项目地址 https://github.com/jakespringer/angr_ctf angr实战 00 拖到IDA 就是输入正确的指令才能通关 这次试一下用angr来解题 go 阅读全文
posted @ 2024-01-25 19:06 go__Ahead 阅读(34) 评论(0) 推荐(0)