数组对象是使用单独的变量名来存储一系列的值。数组非常常用。假如你有一组数据(例如:网站名字),存在单独变量如下所示:var site1="Google";var site2="Runoob";var site3="Taobao";如果有 10 个、100 个这种方式就变的很不实用,这时我们可以使用数... ...
分类:
编程语言 时间:
2020-06-26 01:23:27
阅读次数:
102
install $ pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.5.0-cp27-none-linux_x86_64.whl py2.7: https://storage.googleapi ...
分类:
其他好文 时间:
2020-06-25 19:22:42
阅读次数:
134
背景:这段时间某位同事需要频繁登录我的账号,并且要验证手机验证码,每次都需要我手动将验证码转发给他,觉得非常的麻烦,便想看一下有没有什么能够解放双手的办法,然后发现了AppleScript这么一个非常好用的东西 :) 所需配置 Mac 电脑:既然是使用AppleScript,那么一台MAC电脑自然是 ...
分类:
移动开发 时间:
2020-06-25 16:06:56
阅读次数:
150
背景 毕业论文选择了文本处理的情感分析。交了论文的初稿后,导师看了觉得写得不错,希望我冲击一下优秀论文,给我推荐了bert算法让我再去跑一趟。本是第一次接触NLP的我又去看了这个前2年才由谷歌开发出来的算法,简直头皮发麻。在google开源代码的run_classifier.py里添加了自己的Pro ...
分类:
其他好文 时间:
2020-06-25 16:06:01
阅读次数:
205
经典冒泡排序算法 using System; using System.Threading.Tasks; namespace SingletonDemo { class Program { static void Main(string[] args) { int[] arr = new int[1 ...
分类:
编程语言 时间:
2020-06-25 15:42:50
阅读次数:
53
agc031_d A Sequence of Permutations https://atcoder.jp/contests/agc031/tasks/agc031_d https://img.atcoder.jp/agc031/editorial.pdf Tutorial 对于排列 \(p,q\ ...
分类:
其他好文 时间:
2020-06-25 14:14:06
阅读次数:
52
https://blog.csdn.net/zz531987464/article/details/105977461 https://blog.csdn.net/zz531987464/article/details/106023618?utm_medium=distribute.pc_relev ...
分类:
其他好文 时间:
2020-06-25 12:07:31
阅读次数:
58
agc037_f Counting of Subarrays https://atcoder.jp/contests/agc037/tasks/agc037_f https://img.atcoder.jp/agc037/editorial.pdf Tutorial 我们称一个序列为合法序列当且仅当 ...
分类:
其他好文 时间:
2020-06-25 10:15:33
阅读次数:
68
vscodec++插件编译如下代码会报错 for (int i = 0; i < 10; i++) 只有c99版本以上的编译器才支持,在for起始语句里面声明变量,因此需要指定编译器版本为c99,gcc命令行可以输入gcc -std=c99来实现;vscode需要在.vscode/tasks.jso ...
分类:
其他好文 时间:
2020-06-25 10:02:32
阅读次数:
168
nikkei2019_2_qual_e Non-triangular Triplets https://atcoder.jp/contests/nikkei2019-2-qual/tasks/nikkei2019_2_qual_e 给出 \(N\) 和 \(K\) . 判断对于这 $3N$ 个数 \ ...
分类:
其他好文 时间:
2020-06-25 09:34:22
阅读次数:
52