Given two non-negative integers num1 and num2 represented as string, return the sum of num1 and num2. Note: The length of both num1 and num2 is < 5100 ...
分类:
其他好文 时间:
2020-06-06 11:10:45
阅读次数:
57
From DFA to KMP algorithm DFA In the theory of computation, a branch of theoretical computer science, a deterministic finite automaton (DFA)—also know ...
分类:
其他好文 时间:
2020-06-05 15:09:25
阅读次数:
63
Given a char array representing tasks CPU need to do. It contains capital letters A to Z where different letters represent different tasks. Tasks coul ...
分类:
其他好文 时间:
2020-05-27 09:16:52
阅读次数:
74
题目 People in Mars represent the colors in their computers in a similar way as the Earth people. That is, a color is represented by a 6 digit number, w ...
分类:
其他好文 时间:
2020-05-18 14:35:03
阅读次数:
49
报错: The server time zone value '?й???????' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver ...
分类:
数据库 时间:
2020-05-17 16:12:10
阅读次数:
192
People in Mars represent the colors in their computers in a similar way as the Earth people. That is, a color is represented by a 6-digit number, wher ...
分类:
其他好文 时间:
2020-05-16 22:26:57
阅读次数:
80
Problem Link: Multiple of 2019 Key idea: For subarray S[i1, j] and S[i2, j] with i1 < i2, if the V[i1, j] % 2019 is the same with V[i2, k] % 2019, it ...
分类:
其他好文 时间:
2020-05-13 09:38:43
阅读次数:
64
#include <iostream> #include <Windows.h> #include <TCHAR.h> int main() { if(IsProcessorFeaturePresent(PF_3DNOW_INSTRUCTIONS_AVAILABLE)) printf("当前CPU支 ...
分类:
其他好文 时间:
2020-05-13 00:34:01
阅读次数:
82
给类动态添加Attribute一直是我想要解决的问题,从msdn里找了很久,到Stack Overflow看了不少文章,算是最终有了答案。 先是有这样的一段解释 Attributes are static metadata. Assemblies, modules, types, members, ...
分类:
其他好文 时间:
2020-05-09 00:43:04
阅读次数:
70
```java public class CountDownLatch { /** * Synchronization control For CountDownLatch. * Uses AQS state to represent count. */ private static final c... ...
分类:
其他好文 时间:
2020-05-04 13:46:40
阅读次数:
74