什么是静态工厂方法 在Java中,我们得到类的实例的最常用的方法是使用 new 关键字来调用类的构造方法。 每使用一个new语句,JVM就会在内...
验证回文字符串II 给定一个非空字符串 s,最多删除一个字符。判断是否能成为回文字符串。 实例1:输入“aba” 输出true实例2:输入“...
https://leetcode-cn.com/problems/sum-of-square-numbers/ c^2 = a^2 + b^2 ...
1.Java语言支持四种类型:接口,类,数组和基本数据类型。 Java的基本数据类型有八种, 整数型:byte,short,int,long (...
https://leetcode-cn.com/problems/reverse-vowels-of-a-string/ 需要元音字母保存起来,...
https://leetcode-cn.com/problems/two-sum-ii-input-array-is-sorted/descri...
https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list/desc...
https://leetcode-cn.com/problems/reverse-linked-list/description/ 想到有两种方...
https://leetcode-cn.com/problems/container-with-most-water/ 1.穷举法 用双循环遍历...