https://nginx.org/en/docs/beginners_guide.html#static https://www.jianshu.com/p/0118f7b3344d https://unit.nginx.org/contribution/ ...
分类:
其他好文 时间:
2020-01-06 09:45:01
阅读次数:
63
Algorithm 给出一个 32 位的有符号整数,你需要将这个整数中每位上的数字进行反转。 [Reverse Integer]( https://github.com/felixzfq/leetcode/blob/master/algorithms/python/ReverseInteger.py ...
分类:
其他好文 时间:
2020-01-05 13:35:08
阅读次数:
80
来自: https://pytorch.org/tutorials/beginner/nn_tutorial.html 《What is torch.nn really?》这文章看起来不能再流畅了,看完就能了解pytorch的究竟。 by Jeremy Howard, fast.ai. Thanks ...
分类:
其他好文 时间:
2020-01-04 16:38:57
阅读次数:
97
原文网址:https://stackoverflow.com/questions/50836558/react-native-config-h-not-found I'm beginner of React native developer. After create new project the ...
分类:
其他好文 时间:
2019-12-26 13:30:35
阅读次数:
93
把每个数字每一位上二进制数字取出,求答案时直接用N个数里这一位是0的个数乘上这一位是1的个数然后乘上二的这一位次方,注意所有可能溢出的地方都要对mod取模。 1 #define HAVE_STRUCT_TIMESPEC 2 #include<bits/stdc++.h> 3 using namesp ...
分类:
其他好文 时间:
2019-12-21 15:47:46
阅读次数:
75
最多15个人,用N个二进制的数字表示每个人的状态,然后检验。这串数字相当于已经把这些人的状态定了下来,如果和输入的情况不符则这串数字不正确,直接忽略,因为枚举了所有的情况,所以总有正确的,不必在错误的状态下找寻正确的人数。 1 #define HAVE_STRUCT_TIMESPEC 2 #incl ...
分类:
其他好文 时间:
2019-12-21 12:06:51
阅读次数:
69
思路: dp,使用了bitset优化。 实现: ...
分类:
其他好文 时间:
2019-12-17 18:12:04
阅读次数:
95
PyTorch 原文: https://pytorch.org/tutorials/beginner/transfer_learning_tutorial.html 参考文章: https://www.cnblogs.com/king-lps/p/8665344.html https://blog. ...
分类:
其他好文 时间:
2019-12-02 18:46:15
阅读次数:
171
1、获得TPS插件 https://www.cnblogs.com/beginner-boy/p/7806220.html 参见,已保存百度云盘 2、添加后,记得使用调度器——每秒50个并发,持续60秒,观察TPS 3、TPS,执行一次事务(包括请求、请求服务器、等待服务器返回等等,比如一个TPS事 ...
分类:
其他好文 时间:
2019-11-17 12:46:24
阅读次数:
369
Score: 600 points Approach 固定横坐标 $x$,考虑横坐标为 $x$ 的竖直线上最多可以有几个点。 Observations 若最初两条竖直线 $x_1$、$x_2$ 上都有一个纵坐标是 $y$ 的点,则 这两条竖直线上的点可以“合并” 最终这两条竖直线上的点必定是一样的 ...
分类:
其他好文 时间:
2019-11-13 00:45:15
阅读次数:
108