Articles
7
Tags
3
Categories
0
Home
Archives
Tag
Categories
List
Link
About
听风的博客
Git
Search
Home
Archives
Tag
Categories
List
Link
About
Git
Created
2025-04-25
|
Updated
2025-04-25
|
Post Views:
Author:
听风
Link:
http://example.com/2025/04/25/Git/
Copyright Notice:
All articles on this blog are licensed under
CC BY-NC-SA 4.0
unless otherwise stated.
Previous
渗透测试
前置 虚拟机联网 123456789网络适配器->WLAN点下拉geng'd->共享clash verge: 打开系统代理和Tun 端口号7897ip: VMnet8的IPv4地址git 全局代理: 添加:git config --global http.proxy http://IP:7897 git config --global https.proxy http://IP:7897 取消:git config --global --unset http.proxy git config --global --unset https.proxy 查看:git config --global -l Linux 文件描述符 文件描述符 缩写 描述 默认设备 0 STDIN 标准输入 默认设备键盘 1 STDOUT 标准输出 默认设备显示器 2 STDERR 标准错误输出 默认设备显示器 重定向 12345678910111213//输入重定向<从文件读取输入:sort <...
Next
leetcode
哈希 1.两数之和 快速查找需求 1234567891011121314class Solution{public: vector<int> twoSum(vector<int>& nums,int target){ unordered_map<int,int> hashtable; for(int i=0;i<nums.size();i++){ auto it = hashtable.find(target-nums[i]); if(it !=hashtable.end()){ return {i,it->second}; } hashtable[nums[i]]=i; } return {}; ...
听风
Articles
7
Tags
3
Categories
0
Follow Me
Announcement
This is my Blog
Recent Posts
渗透测试
2025-04-30
Git
2025-04-25
leetcode
2025-03-17
算法
2025-03-10
软件测试
2025-03-10
简
Search
Loading Database