摘要: 1、两数字之和 给定一个整数数组和一个目标值,找出数组中和为目标值的两个数。 你可以假设每个输入只对应一种答案,且同样的元素不能被重复利用。 示例: 给定 nums = [2, 7, 11, 15], target = 9 因为 nums[0] + nums[1] = 2 + 7 = 9 所以返回 阅读全文
posted @ 2018-08-18 21:07 venicid 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 常用 Git 命令清单 本篇博客是转发的别人的,原文地址:http://www.ruanyifeng.com/blog/2015/12/git-cheat-sheet.html 我每天使用 Git ,但是很多命令记不住。 一般来说,日常使用只要记住下图6个命令,就可以了。但是熟练使用,恐怕要记住60 阅读全文
posted @ 2018-08-18 15:38 venicid 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 1、分页组件高阶 1、分页的class形式(有bug,请看下面的) from django.shortcuts import render,HttpResponse # Create your views here. from .models import * def index(request): 阅读全文
posted @ 2018-08-18 14:45 venicid 阅读(350) 评论(0) 推荐(0) 编辑