Aaron2932

导航

2022年8月1日 #

脚本常用写法

摘要: shebang #!/usr/bin/env bash #!/bin/bash #!/usr/bin/python find find . -name "*.txt" find . -name "*.txt" -type f -exec ls -l {} \; grep grep -in "xxx" 阅读全文

posted @ 2022-08-01 00:52 Aaron2932 阅读(40) 评论(0) 推荐(0)

git常用操作

摘要: 克隆 git clone 切换分支 git checkout 提交 git commit -m "xx" rebase git rebase 推送 git push 阅读全文

posted @ 2022-08-01 00:46 Aaron2932 阅读(28) 评论(0) 推荐(0)

ALGO-双指针

摘要: 167. Two Sum II - Input Array Is Sorted func twoSum(numbers []int, target int) []int { tmpMap := make(map[int]int, 10) for idx, val := range numbers { 阅读全文

posted @ 2022-08-01 00:39 Aaron2932 阅读(24) 评论(0) 推荐(0)

算法和数据结构-壹-前言

摘要: 算法和数据结构是编程的灵魂 算法和数据结构是编程的灵魂,我们需要奠定好基础,才能更好地产出优质、可靠的工程代码。 计划 语言 主要以Go语言为主,有必要的话,也会使用C语言,或者是Python 范围 按标签来,优先算法,其次数据结构。 每天两道题目,坚持就是胜利。 题目来源 Leetcode,主要是 阅读全文

posted @ 2022-08-01 00:29 Aaron2932 阅读(20) 评论(0) 推荐(0)