最新 最热

Scheme实现数字电路仿真(3)——模块

上一章介绍了数字电路的重要概念原语,可以用来做门级的元件。这一章里,我们在原语的基础上再引入模块的概念。

2020-03-19
1

nodejs的xlsx模块批量解析与导出excel数据表简单使用

想用nodejs的xlsx模板实现一个小功能,可以批量解析多个excel表,且能对其中的数据进行操作后,导出新表。

2020-03-06
1

一道有趣的树状数组题

Every year, Farmer John's N (1 <= N <= 20,000) cows attend "MooFest",a social gathering of cows from around the world. MooFest involves a variety of events incl...

2020-02-16
1

leetcode 241. Differ

Given a string of numbers and operators, return all possible results from computing all the different possible ways to group numbers and operators. The valid op...

2020-01-09
1

Python文本去重

用法:命令行python unique.py -f file.txt 输出:去除重复字符后的output.txt

2020-01-06
1

Python分组内排序

Code :two_di_list = [[0, 1], [2, 3, 4]]for sub_list in two_di_list: sub_list.sort(reverse=True)print(two_di_list)Output :[[1, 0], [4, 3, 2]]

2020-01-03
1

一道面试题

Basic sales tax is applicable at a rate of 10% on all goods, except books, food, and medical products that are exempt. Import duty is an additional sales tax ap...

2020-01-02
1

ESP8266 LUA脚本语言开发: 外设篇-GPIO输出高低电平

https://nodemcu.readthedocs.io/en/master/en/modules/gpio/

2019-12-17
1

ELK日志系统 - Logstash篇

Logstash 是开源的服务器端数据处理管道,能够同时从多个来源采集数据、转换数据,然后将数据发送到您最喜欢的 “存储库” 中。

2019-12-10
1

TensorFlow2.0 代码实战专栏(四):Word2Vec (Word Embedding)

使用TensorFlow 2.0实现Word2Vec算法计算单词的向量表示,这个例子是使用一小部分维基百科文章来训练的。

2019-12-05
1