It is a little known fact that cows love apples. Farmer John has two apple trees (which are conveniently numbered 1 and 2) in his field, each full of ...
分类:
移动开发 时间:
2019-07-31 12:57:45
阅读次数:
114
上一篇介绍了Context的使用方法。但是Context会让组件变得不纯粹,因为依赖了全局变量。所以这决定了Context一般不会大规模的使用。所以一般在一个组件中使用一个Context就好。 由于Consumer的特性,里面的代码必须是这个函数的返回值。这样就显得复杂与不优雅了。那该怎么解决呢?这 ...
分类:
其他好文 时间:
2019-07-21 18:06:04
阅读次数:
306
A - Little C Loves 3 I CodeForces - 1047A 题意:一个数分成三份,每一个都不是3的倍数 题解:分成 (1, 1, n - 2) 或者分成(1, 2, n - 3 ) #include <iostream> #include <cstdio> #include ...
分类:
其他好文 时间:
2019-07-09 10:55:29
阅读次数:
97
How Does React Native Work? The idea of writing mobile applications in JavaScript feels a little odd. How is it possible to use React in a mobile envi ...
分类:
其他好文 时间:
2019-07-05 19:10:35
阅读次数:
132
BeautifulSoup的使用 我们学习了正则表达式的相关用法,但是一旦正则写的有问题,可能得到的就不是我们想要的结果了,而且对于一个网页来说,都有一定的特殊的结构和层级关系,而且很多标签都有id或class来对作区分,所以我们借助于它们的结构和属性来提取不也是可以的吗? 所以,这一节我们就介绍一 ...
分类:
编程语言 时间:
2019-07-04 11:11:39
阅读次数:
103
''' 安装解析器: pip3 install lxml 安装解析库: pip3 install bs4 ''' html_doc = ''' The Dormouse's story $37 Once upon a time there were three little sisters; and... ...
分类:
编程语言 时间:
2019-07-03 20:20:47
阅读次数:
127
打卡日期记录: 遗忘曲线记录 查词用浏览器;复习刷遍数,用电子版文件m 20 考研英语题源外刊精讲赏析1~10 期外刊原文+翻译+点评 01-《美国执业证照制度在阻碍竞争》 本文选自 The Economist《经济学人》 2018 年 2 月 17 日一篇题为 America should get ...
分类:
其他好文 时间:
2019-06-30 14:04:16
阅读次数:
1041
Business Case 1.0 Introduction/Background Martha Stockton Greengage will set up the Martha Stockton Greengage Foundation (MSG) to assist young couples ...
分类:
其他好文 时间:
2019-06-30 10:04:21
阅读次数:
174
"题目链接" 题意 给定1个长度为2n的01数组。你可以交换相邻的元素。询问最少交换次数,使得前n个元素组成的子数组中的逆序对个数等于后n个元素组成的子数组中的逆序对个数。$1 \leq n\leq 10^5$ 题解 普通的数组中,数的种类繁多,逆序对的求解及动态维护是很复杂的情况。 考虑利用 01 ...
分类:
其他好文 时间:
2019-06-29 22:01:50
阅读次数:
187