1.请求的封装 class HttpRequest(object): def __init__(self): pass @propery def GET(self): pass @propery def POST(self): pass @propery def body(self): pass?c ...
分类:
其他好文 时间:
2019-11-20 21:20:47
阅读次数:
71
subject 其中一个意思:force something to experience something very unplesant,especially for a long time eg:like any new product entering the food chain ,gene ...
分类:
其他好文 时间:
2019-11-20 19:20:50
阅读次数:
77
File artical.txt contains an article in English (please create the file by yourself and put any English article you picked in it). Assume the article ...
分类:
其他好文 时间:
2019-11-20 13:06:23
阅读次数:
67
django admin配置以及使用 知识预览 admin组件使用 admin源码解析 admin组件使用 Django 提供了基于 web 的管理工具(django 2.0+, python3.6+)。 Django 自动管理工具是 django.contrib 的一部分。你可以在项目的 sett ...
分类:
其他好文 时间:
2019-11-19 13:56:16
阅读次数:
82
APPLIES TO: Oracle Database - Enterprise Edition - Version 11.2.0.4 to 11.2.0.4 [Release 11.2]Information in this document applies to any platform. SY ...
分类:
其他好文 时间:
2019-11-19 13:54:26
阅读次数:
127
如何评价代码质量的高低? 实际上,咱们平时嘴中常说的“好”和“烂”,是对代码质量的一种描述。“好”笼统地表示代码质量高,“烂”笼统地表示代码质量低。对于代码质量的描述,除了“好”“烂”这样比较简单粗暴的描述方式之外,我们也经常会听到很多其他的描述方式。这些描述方法语义更丰富、更专业、更细化。我搜集整 ...
分类:
其他好文 时间:
2019-11-19 12:01:13
阅读次数:
85
package bigint; /** * This class encapsulates a BigInteger, i.e. a positive or negative integer * with any number of digits, which overcomes the compu ...
分类:
编程语言 时间:
2019-11-17 14:43:40
阅读次数:
85
第一次用git,遇到这个错误提示,原来是这样的: fatal: Not a git repository (or any of the parent directories): .git This tells you that the directory you're in is not a git ...
分类:
其他好文 时间:
2019-11-17 14:32:12
阅读次数:
63
一、记忆化搜索 斐波那契算法 1.递归代码(时间复杂度O(2^n)): int f(int n){ if(n == 1 || n == 2){ return 1; } return f(n-1) + f(n-2); } 2.递归加记忆化 public class Solution{ int[] re ...
分类:
其他好文 时间:
2019-11-17 12:52:18
阅读次数:
72