格式化代码

This commit is contained in:
轩辕龙儿 2022-09-19 21:59:36 +08:00
parent f85196585c
commit 7a721c901e
270 changed files with 127300 additions and 2791 deletions

View File

@ -39,6 +39,7 @@
// 👍 1 👎 0
package leetcode.editor.cn;
//5963:反转两次的数字
class ANumberAfterADoubleReversal {
public static void main(String[] args) {

View File

@ -52,6 +52,7 @@ public class AddTwoNumbers{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -50,6 +50,7 @@ public class AverageOfLevelsInBinaryTree{
// TO TEST
}
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for a binary tree node.
* public class TreeNode {

View File

@ -52,6 +52,7 @@ public class BalancedBinaryTree{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for a binary tree node.
* public class TreeNode {

View File

@ -38,6 +38,7 @@ public class BaoHanMinhanShuDeZhanLcof{
//测试代码
// Solution solution = new BaoHanMinhanShuDeZhanLcof().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class MinStack {

View File

@ -30,6 +30,7 @@ public class BinaryTreePostorderTraversal{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for a binary tree node.
* public class TreeNode {

View File

@ -56,7 +56,8 @@ public class BinaryTreeZigzagLevelOrderTraversal {
* }
*/
class Solution {
public List<List<Integer>> zigzagLevelOrder(TreeNode root) {List<List<Integer>> ans = new LinkedList<List<Integer>>();
public List<List<Integer>> zigzagLevelOrder(TreeNode root) {
List<List<Integer>> ans = new LinkedList<List<Integer>>();
if (root == null) {
return ans;
}

View File

@ -26,12 +26,14 @@
// 👍 43 👎 0
package leetcode.editor.cn;
//面试题 08.14:布尔运算
public class BooleanEvaluationLcci {
public static void main(String[] args) {
//测试代码
Solution solution = new BooleanEvaluationLcci().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -38,6 +38,7 @@
// Related Topics 数组 模拟 👍 2 👎 0
package leetcode.editor.cn;
//1920:基于排列构建数组
class BuildArrayFromPermutation {
public static void main(String[] args) {

View File

@ -58,6 +58,7 @@
// 👍 4 👎 0
package leetcode.editor.cn;
//5948:判断一个括号字符串是否有效
class CheckIfAParenthesesStringCanBeValid {
public static void main(String[] args) {

View File

@ -30,6 +30,7 @@
// Related Topics 哈希表 字符串 计数 👍 0 👎 0
package leetcode.editor.cn;
//1941:检查是否所有字符出现次数相同
class CheckIfAllCharactersHaveEqualNumberOfOccurrences {
public static void main(String[] args) {

View File

@ -43,6 +43,7 @@ public class CheckIfTheSentenceIsPangram{
//测试代码
Solution solution = new CheckIfTheSentenceIsPangram().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -57,12 +57,14 @@
// 👍 4 👎 0
package leetcode.editor.cn;
//1880:检查某单词是否等于两单词之和
public class CheckIfWordEqualsSummationOfTwoWords {
public static void main(String[] args) {
//测试代码
Solution solution = new CheckIfWordEqualsSummationOfTwoWords().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -53,6 +53,7 @@ public class ChuanDiXinXi{
System.out.println(solution.numWays(3, new int[][]{{0, 2}, {2, 1}}, 2));
System.out.println(solution.numWays(5, new int[][]{{0, 2}, {2, 1}, {3, 4}, {2, 3}, {1, 4}, {2, 0}, {0, 4}}, 3));
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -108,6 +108,7 @@ class Node {
class Solution {
private HashMap<Node, Node> use = new HashMap<>();
public Node cloneGraph(Node node) {
if (node == null) {
return node;

View File

@ -51,6 +51,7 @@ public class Combinations {
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
List<List<Integer>> list = new ArrayList<>();
// public List<List<Integer>> combine(int n, int k) {
// int[] nums = new int[n];
// for (int i = 0; i < n; i++) {

View File

@ -30,6 +30,7 @@ class CongWeiDaoTouDaYinLianBiaoLcof{
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -61,6 +61,7 @@ public class ConvertBinaryNumberInALinkedListToInteger{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -45,6 +45,7 @@ class ConvertSortedArrayToBinarySearchTree{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for a binary tree node.
* public class TreeNode {

View File

@ -48,6 +48,7 @@
// Related Topics 数组 前缀和 👍 218 👎 0
package leetcode.editor.cn;
//1109:航班预订统计
class CorporateFlightBookings {
public static void main(String[] args) {

View File

@ -47,6 +47,7 @@ public class CountNicePairsInAnArray{
//测试代码
Solution solution = new CountNicePairsInAnArray().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
@ -69,6 +70,7 @@ class Solution {
}
return (int) (count % (Math.pow(10, 9) + 7));
}
private int revert(int num) {
String str = "" + num;
str = new StringBuilder(str).reverse().toString();

View File

@ -28,6 +28,7 @@
// Related Topics 数学 枚举 👍 5 👎 0
package leetcode.editor.cn;
//1925:统计平方和三元组的数目
class CountSquareSumTriples {
public static void main(String[] args) {

View File

@ -29,6 +29,7 @@ public class DeleteMiddleNodeLcci{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -47,6 +47,7 @@ public class DeleteNodeInALinkedList{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -74,6 +74,7 @@ public class DesignAuthenticationManager{
//测试代码
// Solution solution = new DesignAuthenticationManager().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class AuthenticationManager {

View File

@ -56,12 +56,15 @@ public class DesignHashset{
//测试代码
// Solution solution = new DesignHashset().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class MyHashSet {
List<Integer> list;
/** Initialize your data structure here. */
/**
* Initialize your data structure here.
*/
public MyHashSet() {
list = new ArrayList<>();
}
@ -81,7 +84,9 @@ class MyHashSet {
}
}
/** Returns true if this set contains the specified element */
/**
* Returns true if this set contains the specified element
*/
public boolean contains(int key) {
for (int i = 0; i < list.size(); i++) {
if (list.get(i) == key) {

View File

@ -44,12 +44,14 @@
// 👍 4 👎 0
package leetcode.editor.cn;
//1812:判断国际象棋棋盘中一个格子的颜色
public class DetermineColorOfAChessboardSquare {
public static void main(String[] args) {
//测试代码
Solution solution = new DetermineColorOfAChessboardSquare().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -56,12 +56,14 @@ class Employee {
class Solution {
Map<Integer, Employee> map = new HashMap<>();
public int getImportance(List<Employee> employees, int id) {
for (Employee employee : employees) {
map.put(employee.id, employee);
}
return dfs(id);
}
private int dfs(int id) {
Employee employee = map.get(id);
int total = employee.importance;

View File

@ -31,6 +31,7 @@ public class FanZhuanLianBiaoLcof{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -45,6 +45,7 @@
// 👍 2 👎 0
package leetcode.editor.cn;
//1979:找出数组的最大公约数
class FindGreatestCommonDivisorOfArray {
public static void main(String[] args) {

View File

@ -61,6 +61,7 @@ class FindRightInterval{
TwoArray twoArray = new TwoArray("[[1,4],[2,3],[3,4]]", true);
solution.findRightInterval(twoArray.getArr());
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -44,6 +44,7 @@ public class FindTheMostCompetitiveSubsequence{
//测试代码
Solution solution = new FindTheMostCompetitiveSubsequence().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -70,6 +70,7 @@ public class FindingPairsWithACertainSum{
//测试代码
// Solution solution = new FindingPairsWithACertainSum().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class FindSumPairs {

View File

@ -62,6 +62,7 @@ public class FindingTheUsersActiveMinutes{
//测试代码
Solution solution = new FindingTheUsersActiveMinutes().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -28,6 +28,7 @@ class FirstUniqueCharacterInAString{
//测试代码
Solution solution = new FirstUniqueCharacterInAString().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -28,12 +28,14 @@
// 👍 25 👎 0
package leetcode.editor.cn;
//LCP 28:采购方案
public class FourXy4Wx {
public static void main(String[] args) {
//测试代码
Solution solution = new FourXy4Wx().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -54,6 +54,7 @@ public class FrequencyOfTheMostFrequentElement{
//测试代码
Solution solution = new FrequencyOfTheMostFrequentElement().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -65,6 +65,7 @@ public class GetBiggestThreeRhombusSumsInAGrid{
//测试代码
Solution solution = new GetBiggestThreeRhombusSumsInAGrid().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -31,6 +31,7 @@ class GroupAnagramsLcci{
//测试代码
Solution solution = new GroupAnagramsLcci().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -64,6 +64,7 @@ public class HouseRobberIi {
}
return Math.max(range(Arrays.copyOfRange(nums, 0, length - 1)), range(Arrays.copyOfRange(nums, 1, length)));
}
public int range(int[] nums) {
int length = nums.length;
int start = nums[0], end = Math.max(nums[0], nums[1]);

View File

@ -72,6 +72,7 @@ public class HtmlEntityParser{
//测试代码
Solution solution = new HtmlEntityParser().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -47,6 +47,7 @@ class IncreasingSubsequences {
class Solution {
private List<Integer> path = new ArrayList<>();
private List<List<Integer>> res = new ArrayList<>();
public List<List<Integer>> findSubsequences(int[] nums) {
backtracking(nums, 0);
return res;

View File

@ -42,12 +42,14 @@
// 👍 2 👎 0
package leetcode.editor.cn;
//1860:增长的内存泄露
public class IncrementalMemoryLeak {
public static void main(String[] args) {
//测试代码
Solution solution = new IncrementalMemoryLeak().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -42,6 +42,7 @@ public class InsertionSortList{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -70,12 +70,14 @@
// 👍 593 👎 0
package leetcode.editor.cn;
//12:整数转罗马数字
public class IntegerToRoman {
public static void main(String[] args) {
//测试代码
Solution solution = new IntegerToRoman().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -44,6 +44,7 @@ class IntersectionOfTwoArraysIi{
//测试代码
Solution solution = new IntersectionOfTwoArraysIi().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -81,6 +81,7 @@ public class IntersectionOfTwoLinkedLists{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -24,6 +24,7 @@ public class IntersectionOfTwoLinkedListsLcci{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -37,6 +37,7 @@ public class InvertBinaryTree{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for a binary tree node.
* public class TreeNode {

View File

@ -48,6 +48,7 @@ public class IsomorphicStrings{
Solution solution = new IsomorphicStrings().new Solution();
solution.isIsomorphic("badc", "baba");
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -36,6 +36,7 @@
// 👍 1053 👎 0
package leetcode.editor.cn;
//45:跳跃游戏 II
public class JumpGameIi {
public static void main(String[] args) {
@ -43,6 +44,7 @@ public class JumpGameIi{
Solution solution = new JumpGameIi().new Solution();
System.out.println(solution.jump(new int[]{2, 3, 1, 1, 4}));
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -47,6 +47,7 @@ class KClosestPointsToOrigin{
//测试代码
Solution solution = new KClosestPointsToOrigin().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -39,6 +39,7 @@ public class KthLargestElementInAnArray{
//测试代码
Solution solution = new KthLargestElementInAnArray().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -25,6 +25,7 @@ public class KthNodeFromEndOfListLcci{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -52,6 +52,7 @@
// Related Topics 贪心 数组 字符串 👍 5 👎 0
package leetcode.editor.cn;
//1946:子字符串突变后可能得到的最大整数
class LargestNumberAfterMutatingSubstring {
public static void main(String[] args) {

View File

@ -25,6 +25,7 @@ public class LianBiaoZhongDaoShuDiKgeJieDianLcof{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -72,6 +72,7 @@ public class LiangGeLianBiaoDeDiYiGeGongGongJieDianLcof{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -53,6 +53,7 @@ public class LinkedListComponents{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -67,6 +67,7 @@ public class LinkedListCycle{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* class ListNode {

View File

@ -70,6 +70,7 @@ public class LinkedListCycleIi{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* class ListNode {

View File

@ -54,12 +54,14 @@
// 👍 7 👎 0
package leetcode.editor.cn;
//1869:哪种连续子字符串更长
public class LongerContiguousSegmentsOfOnesThanZeros {
public static void main(String[] args) {
//测试代码
Solution solution = new LongerContiguousSegmentsOfOnesThanZeros().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -40,6 +40,7 @@ public class LongestDuplicateSubstring{
Solution solution = new LongestDuplicateSubstring().new Solution();
// TO TEST
}
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public String longestDupSubstring(String s) {

View File

@ -50,12 +50,14 @@
// 👍 15 👎 0
package leetcode.editor.cn;
//1800:最大升序子数组和
public class MaximumAscendingSubarraySum {
public static void main(String[] args) {
//测试代码
Solution solution = new MaximumAscendingSubarraySum().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -70,6 +70,7 @@ public class MaximumElementAfterDecreasingAndRearranging{
//测试代码
Solution solution = new MaximumElementAfterDecreasingAndRearranging().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -53,6 +53,7 @@ public class MaximumIceCreamBars{
//测试代码
Solution solution = new MaximumIceCreamBars().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -40,6 +40,7 @@
// 👍 1 👎 0
package leetcode.editor.cn;
//5946:句子中的最多单词数
class MaximumNumberOfWordsFoundInSentences {
public static void main(String[] args) {

View File

@ -34,12 +34,14 @@
// 👍 14 👎 0
package leetcode.editor.cn;
//1854:人口最多的年份
public class MaximumPopulationYear {
public static void main(String[] args) {
//测试代码
Solution solution = new MaximumPopulationYear().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -43,12 +43,14 @@
// 👍 4 👎 0
package leetcode.editor.cn;
//1881:插入后的最大值
public class MaximumValueAfterInsertion {
public static void main(String[] args) {
//测试代码
Solution solution = new MaximumValueAfterInsertion().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -56,12 +56,14 @@
// 👍 11 👎 0
package leetcode.editor.cn;
//1829:每个查询的最大异或值
public class MaximumXorForEachQuery {
public static void main(String[] args) {
//测试代码
Solution solution = new MaximumXorForEachQuery().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -68,6 +68,7 @@ public class MedianOfTwoSortedArrays{
//测试代码
Solution solution = new MedianOfTwoSortedArrays().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -57,6 +57,7 @@ public class MergeKSortedLists{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {
@ -75,6 +76,7 @@ class Solution {
}
return result;
}
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
if (l1 == null) {
return l2;

View File

@ -47,6 +47,7 @@ public class MergeTwoSortedLists{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -48,6 +48,7 @@ public class MiddleOfTheLinkedList{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -81,16 +81,20 @@ public class MinStack {
class Data {
int num;
int min;
public Data(int num, int min) {
this.num = num;
this.min = min;
}
public int getNum() {
return num;
}
public void setNum(int num) {
this.num = num;
}
public int getMin() {
return min;
}
@ -99,6 +103,7 @@ public class MinStack {
this.min = min;
}
}
Stack<Data> stack;
public MinStack1() {

View File

@ -55,6 +55,7 @@ public class MinimizeMaximumPairSumInArray{
//测试代码
Solution solution = new MinimizeMaximumPairSumInArray().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -38,6 +38,7 @@
// Related Topics 贪心 数组 数学 👍 95 👎 0
package leetcode.editor.cn;
//1217:玩筹码
class MinimumCostToMoveChipsToTheSamePosition {
public static void main(String[] args) {

View File

@ -55,12 +55,14 @@
// 👍 1 👎 0
package leetcode.editor.cn;
//5720:使字符串有序的最少操作次数
public class MinimumNumberOfOperationsToMakeStringSorted {
public static void main(String[] args) {
//测试代码
Solution solution = new MinimumNumberOfOperationsToMakeStringSorted().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -41,12 +41,14 @@
// 👍 8 👎 0
package leetcode.editor.cn;
//1864:构成交替字符串需要的最小交换次数
public class MinimumNumberOfSwapsToMakeTheBinaryStringAlternating {
public static void main(String[] args) {
//测试代码
Solution solution = new MinimumNumberOfSwapsToMakeTheBinaryStringAlternating().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -45,12 +45,14 @@
// 👍 7 👎 0
package leetcode.editor.cn;
//1827:最少操作使数组递增
public class MinimumOperationsToMakeTheArrayIncreasing {
public static void main(String[] args) {
//测试代码
Solution solution = new MinimumOperationsToMakeTheArrayIncreasing().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -54,6 +54,7 @@ public class NextGreaterNodeInLinkedList{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -24,6 +24,7 @@
// 👍 170 👎 0
package leetcode.editor.cn;
//400: N 位数字
class NthDigit {
public static void main(String[] args) {

View File

@ -78,6 +78,7 @@ public class NumberOfIslands {
}
return count;
}
private void dfs(char[][] grid, int x, int y) {
if (x < 0 || y < 0 || x >= grid.length || y >= grid[0].length || grid[x][y] == '0') {
return;

View File

@ -34,6 +34,7 @@ public class OddEvenLinkedList{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -31,6 +31,7 @@ public class PalindromeLinkedList{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -33,6 +33,7 @@ public class PalindromeLinkedListLcci{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -42,6 +42,7 @@ public class PartitionList{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -29,6 +29,7 @@ public class PascalsTriangle{
//测试代码
Solution solution = new PascalsTriangle().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -41,6 +41,7 @@ public class PermutationInString{
//测试代码
Solution solution = new PermutationInString().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -56,12 +56,14 @@
// 👍 362 👎 0
package leetcode.editor.cn;
//231:2 的幂
class PowerOfTwo {
public static void main(String[] args) {
//测试代码
Solution solution = new PowerOfTwo().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -44,12 +44,14 @@
// 👍 138 👎 0
package leetcode.editor.cn;
//879:盈利计划
public class ProfitableSchemes {
public static void main(String[] args) {
//测试代码
Solution solution = new ProfitableSchemes().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -44,12 +44,14 @@
// 👍 5 👎 0
package leetcode.editor.cn;
//1828:统计一个圆中点的数目
public class QueriesOnNumberOfPointsInsideACircle {
public static void main(String[] args) {
//测试代码
Solution solution = new QueriesOnNumberOfPointsInsideACircle().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -47,12 +47,14 @@
// 👍 273 👎 0
package leetcode.editor.cn;
//307:区域和检索 - 数组可修改
public class RangeSumQueryMutable {
public static void main(String[] args) {
//测试代码
// Solution solution = new RangeSumQueryMutable().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class NumArray {

View File

@ -42,6 +42,7 @@ public class RemoveDuplicateNodeLcci{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -42,6 +42,7 @@ public class RemoveDuplicatesFromSortedList{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -42,6 +42,7 @@ public class RemoveDuplicatesFromSortedListIi{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -46,6 +46,7 @@ class RemoveLinkedListElements{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -53,6 +53,7 @@ public class RemoveNthNodeFromEndOfList{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -49,12 +49,14 @@
// 👍 58 👎 0
package leetcode.editor.cn;
//1332:删除回文子序列
public class RemovePalindromicSubsequences {
public static void main(String[] args) {
//测试代码
Solution solution = new RemovePalindromicSubsequences().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {

View File

@ -53,6 +53,7 @@ public class RemoveZeroSumConsecutiveNodesFromLinkedList{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

View File

@ -28,6 +28,7 @@ public class ReorderList{
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
/**
* Definition for singly-linked list.
* public class ListNode {

Some files were not shown because too many files have changed in this diff Show More