This is my first note of CS224N (Natural Language Processing with Deep Learning), hoping could finish this class in the near future! Lecture1 drew an ...
分类:
其他好文 时间:
2020-01-15 21:29:44
阅读次数:
96
Given an integer n. No-Zero integer is a positive integer which doesn't contain any 0 in its decimal representation. Return a list of two integers [A, ...
分类:
其他好文 时间:
2020-01-14 09:17:43
阅读次数:
100
1.简介 RocketMQ is a distributed messaging and streaming platform with low latency, high performance and reliability, trillion level capacity and flexib ...
分类:
其他好文 时间:
2020-01-12 21:41:26
阅读次数:
105
问题描述 org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'xxxxx.UserService' available: expected at least 1 be ...
分类:
编程语言 时间:
2020-01-09 15:55:45
阅读次数:
187
[toc] logrus介绍 golang标准库的日志框架非常简单,仅仅提供了print,panic和fatal三个函数。对于更精细的日志级别、日志文件分割,以及日志分发等方面,并没有提供支持。在golang的世界,流行的日志框架包括logrus、zap、zerolog、seelog等。 logru ...
分类:
其他好文 时间:
2020-01-09 01:28:20
阅读次数:
907
原题链接在这里:https://leetcode.com/problems/longest-substring-with-at-least-k-repeating-characters/ 题目: Find the length of the longest substring T of a give ...
分类:
其他好文 时间:
2020-01-06 15:00:54
阅读次数:
81
这道题思路很简单,就是在一个loop下找最大的和第二大的数值。记住,python最小的数值是-sys.maxsize-1 ...
分类:
其他好文 时间:
2020-01-06 09:48:25
阅读次数:
66
前述 数据库实例有buffercache,buffercache中有很多buffer buffercache里面单独有一块内存区域用来记录,有很多链是chain LRU链:least recent use最近最少使用,LRU上链的是干净块 LRUW链:least recently used writ ...
分类:
数据库 时间:
2019-12-27 09:44:25
阅读次数:
124
下面的内容是个人学习记录,来自https://www.yiibai.com/mysql/greatest-least.html。请大佬勿喷,这里是要强调一点东西。 MySQL GREATEST和LEAST函数介绍 它跟MAX()与MIN()函数的区别就是,前面是比较多个字段(列)的最大值最小值,后面 ...
分类:
数据库 时间:
2019-12-25 18:59:52
阅读次数:
160
Description Find the contiguous subarray within an array (containing at least one number) which has the largest product. Description Description Find ...
分类:
其他好文 时间:
2019-12-21 22:54:06
阅读次数:
97