今天刷LeetCode的时候看题析,看到一个未曾使用过的方法String.join() /** * Creates a new String by putting each element together joined by the delimiter. If an element is null ...
分类:
其他好文 时间:
2020-04-29 12:48:31
阅读次数:
58
系列文章: https://preppindata.blogspot.com/p/how-toprep-index.html 如何计划你的prep 阶段1: 了解你的数据 不了解数据,就没法得到想要的分析结果。对于小型的数据集,可以这么做: 列,行,交叉表是如何组织结构的 header标题(列名)和 ...
分类:
其他好文 时间:
2020-04-27 17:38:54
阅读次数:
77
ORA-04031 在使用dbca建库正式安装的的第一阶段“Creating and starting Oracle instance”报出如下的错误 ORA-04031:unable to allocate 1572864 bytes of shared memory ("shared pool" ...
分类:
其他好文 时间:
2020-04-26 18:43:07
阅读次数:
67
官方文档地址: http://www.jetbrains.com/phpstorm/help/creating-php-documentation-comments.html#d745077e199 由于英文水平有限 自己总结了一下操作步骤: file-> setting-> FIle and Co ...
分类:
Web程序 时间:
2020-04-17 15:19:31
阅读次数:
204
PuTTY Trick 1: Delete All PuTTY Sessions Together When you are swapping an old computer with a new computer, you may end-up transferring all PuTTY ses ...
分类:
其他好文 时间:
2020-04-16 01:01:51
阅读次数:
291
题目: Farmer John has purchased a lush new rectangular pasture composed of M by N (1 ≤ M ≤ 12; 1 ≤ N ≤ 12) square parcels. He wants to grow some yummy c ...
分类:
其他好文 时间:
2020-04-13 22:54:46
阅读次数:
61
上一篇文章介绍了 HashMap 源码,反响不错,也有很多同学发表了自己的观点,这次又来了,这次是 了,作为线程安全的HashMap ,它的使用频率也是很高。那么它的存储结构和实现原理是怎么样的呢? 1. ConcurrentHashMap 1.7 1. 存储结构 Java 7 中 Concurre ...
分类:
其他好文 时间:
2020-04-08 09:37:15
阅读次数:
66
Given an array of strings, group anagrams together. Example: Note: All inputs will be in lowercase. The order of your output does not matter. 这道题就是用每个 ...
分类:
其他好文 时间:
2020-04-07 10:00:31
阅读次数:
94
leetcode 49. Group Anagrams Given an array of strings, group anagrams together. Example: Input: ["eat", "tea", "tan", "ate", "nat", "bat"], Output: [ ...
分类:
其他好文 时间:
2020-04-06 17:19:17
阅读次数:
69
通过使用 JDBC Statement, CallableStatement 和 PreparedStatement 接口定义的方法和属性,使可以使用 SQL 或 PL/SQL 命令和从数据库接收数据。 接口应用场景 Statement 当在运行时使用静态 SQL 语句时(Statement 接口不 ...
分类:
数据库 时间:
2020-04-03 00:14:33
阅读次数:
93