06 2020 档案

摘要:1.创建ssh key、配置git 1、设置username和email(github每次commit都会记录他们) git config --global user.name "用户名" git config --global user.email "邮箱" 2、通过终端命令创建ssh key s 阅读全文
posted @ 2020-06-20 00:10 举个栗子^-^ 阅读(287) 评论(0) 推荐(0)
摘要:给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。 给定 nums = [2, 7, 11, 15], target = 9。因为 nums[0] 阅读全文
posted @ 2020-06-12 14:27 举个栗子^-^ 阅读(181) 评论(0) 推荐(0)