Merge remote-tracking branch 'origin/master'

This commit is contained in:
轩辕龙儿 2022-09-26 14:39:59 +08:00
commit 3c28d2a686
279 changed files with 127902 additions and 2791 deletions

View File

@ -0,0 +1,72 @@
package contest.y2022.m7;
import java.lang.reflect.Array;
import java.util.Arrays;
public class Dw83 {
public static void main(String[] args) {
Dw83 solution = new Dw83();
}
public int shortestSequence(int[] rolls, int k) {
int cnt = 1;
boolean[] uses = new boolean[k + 1];
int use = k;
for (int i = 0; i < rolls.length; i++) {
if (!uses[rolls[i]]) {
uses[rolls[i]] = true;
use--;
}
if (use == 0) {
cnt++;
Arrays.fill(uses, false);
use = k;
}
}
return cnt;
}
public long zeroFilledSubarray(int[] nums) {
long cnt = 0;
int[] cnts = new int[nums.length];
if (nums[0] == 0) {
cnts[0] = 1;
cnt = 1;
}
for (int i = 1; i < nums.length; i++) {
if (nums[i] == 0) {
cnts[i] = cnts[i - 1] + 1;
cnt += cnts[i];
}
}
return cnt;
}
public String bestHand(int[] ranks, char[] suits) {
boolean bl = true;
int max = 1;
int cnt = 1;
Arrays.sort(ranks);
for (int i = 1; i < 5; i++) {
if (suits[i] != suits[i - 1]) {
bl = false;
}
if (ranks[i] == ranks[i - 1]) {
cnt++;
} else {
max = Math.max(max, cnt);
cnt = 1;
}
}
max = Math.max(max, cnt);
if (bl) {
return "Flush";
} else if (max >= 3) {
return "Three of a Kind";
} else if (max == 2) {
return "Pair";
} else {
return "High Card";
}
}
}

View File

@ -0,0 +1,32 @@
package contest.y2022.m7;
import java.util.*;
public class NumberContainers {
Map<Integer, Integer> nums;
Map<Integer, TreeSet<Integer>> map;
public NumberContainers() {
nums = new HashMap<>();
map = new HashMap<>();
}
public void change(int index, int number) {
if (nums.containsKey(index)) {
map.get(nums.get(index)).remove(index);
}
nums.put(index, number);
TreeSet<Integer> list = map.getOrDefault(number, new TreeSet<>());
list.add(index);
map.put(number, list);
}
public int find(int number) {
TreeSet<Integer> list = map.getOrDefault(number, new TreeSet<>());
if (list.size() > 0) {
return list.first();
} else {
return -1;
}
}
}

View File

@ -0,0 +1,118 @@
package contest.y2022.m9;
import com.code.leet.entiy.TreeNode;
import java.util.*;
public class Week311 {
public static void main(String[] args) {
Week311 soluytion = new Week311();
//TreeNode root = new TreeNode(Arrays.asList(2, 3, 5, 8, 13, 21, 34));
TreeNode root = new TreeNode(Arrays.asList(0, 1, 2, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2));
soluytion.reverseOddLevels(root);
}
class Trie {
private Trie[] children;
private int cnt;
public Trie() {
children = new Trie[26];
cnt = 0;
}
public void insert(String word) {
Trie node = this;
for (int i = 0; i < word.length(); i++) {
char ch = word.charAt(i);
int index = ch - 'a';
if (node.children[index] == null) {
node.children[index] = new Trie();
}
node = node.children[index];
node.cnt += 1;
}
}
private int search(String prefix) {
Trie node = this;
int cnt = 0;
for (int i = 0; i < prefix.length(); i++) {
char ch = prefix.charAt(i);
int index = ch - 'a';
if (node.children[index] == null) {
break;
}
node = node.children[index];
cnt += node.cnt;
}
return cnt;
}
}
public int[] sumPrefixScores(String[] words) {
Trie trie = new Trie();
for (String word : words) {
trie.insert(word);
}
int[] arrs = new int[words.length];
for (int i = 0; i < words.length; i++) {
arrs[i] = trie.search(words[i]);
}
return arrs;
}
public TreeNode reverseOddLevels(TreeNode root) {
List<Integer> list = new ArrayList<>();
Queue<TreeNode> queue = new LinkedList<>();
queue.add(root);
while (!queue.isEmpty()) {
TreeNode node = queue.poll();
list.add(node.val);
if (node.left != null) {
queue.add(node.left);
queue.add(node.right);
}
}
root = new TreeNode(list.get(0));
queue.add(root);
int n = 1;
int min = 0;
int max = 0;
int cnt = 1;
int mul = 1;
while (cnt < list.size()) {
min = max + 1;
max += mul * 2;
cnt += mul * 2;
if (n % 2 == 0) {
for (int i = min; i <= max; i = i + 2) {
TreeNode node = queue.poll();
TreeNode left = new TreeNode(list.get(i));
TreeNode right = new TreeNode(list.get(i + 1));
node.left = left;
node.right = right;
queue.add(left);
queue.add(right);
}
} else {
for (int i = max; i >= min; i = i - 2) {
TreeNode node = queue.poll();
TreeNode left = new TreeNode(list.get(i));
TreeNode right = new TreeNode(list.get(i - 1));
node.left = left;
node.right = right;
queue.add(left);
queue.add(right);
}
}
n++;
mul *= 2;
}
return root;
}
public int smallestEvenMultiple(int n) {
return n % 2 == 0 ? n : n * 2;
}
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -56,7 +56,8 @@ public class BinaryTreeZigzagLevelOrderTraversal {
* } * }
*/ */
class Solution { 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) { if (root == null) {
return ans; return ans;
} }

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -45,6 +45,7 @@
// 👍 2 👎 0 // 👍 2 👎 0
package leetcode.editor.cn; package leetcode.editor.cn;
//1979:找出数组的最大公约数 //1979:找出数组的最大公约数
class FindGreatestCommonDivisorOfArray { class FindGreatestCommonDivisorOfArray {
public static void main(String[] args) { 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); TwoArray twoArray = new TwoArray("[[1,4],[2,3],[3,4]]", true);
solution.findRightInterval(twoArray.getArr()); solution.findRightInterval(twoArray.getArr());
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -31,6 +31,7 @@ class GroupAnagramsLcci{
//测试代码 //测试代码
Solution solution = new GroupAnagramsLcci().new Solution(); Solution solution = new GroupAnagramsLcci().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { 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))); return Math.max(range(Arrays.copyOfRange(nums, 0, length - 1)), range(Arrays.copyOfRange(nums, 1, length)));
} }
public int range(int[] nums) { public int range(int[] nums) {
int length = nums.length; int length = nums.length;
int start = nums[0], end = Math.max(nums[0], nums[1]); 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(); Solution solution = new HtmlEntityParser().new Solution();
} }
//力扣代码 //力扣代码
//leetcode submit region begin(Prohibit modification and deletion) //leetcode submit region begin(Prohibit modification and deletion)
class Solution { class Solution {

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -0,0 +1,63 @@
//字母序连续字符串 是由字母表中连续字母组成的字符串换句话说字符串 "abcdefghijklmnopqrstuvwxyz" 的任意子字符串都是 字母序连
//续字符串
//
//
// 例如"abc" 是一个字母序连续字符串 "acb" "za" 不是
//
//
// 给你一个仅由小写英文字母组成的字符串 s 返回其 最长 字母序连续子字符串 的长度
//
//
//
// 示例 1
//
// 输入s = "abacaba"
//输出2
//解释共有 4 个不同的字母序连续子字符串 "a""b""c" "ab"
//"ab" 是最长的字母序连续子字符串
//
//
// 示例 2
//
// 输入s = "abcde"
//输出5
//解释"abcde" 是最长的字母序连续子字符串
//
//
//
//
// 提示
//
//
// 1 <= s.length <= 10
// s 由小写英文字母组成
//
//
// 👍 4 👎 0
package leetcode.editor.cn;
//2414:最长的字母序连续子字符串的长度
public class LengthOfTheLongestAlphabeticalContinuousSubstring {
public static void main(String[] args) {
// 测试代码
Solution solution = new LengthOfTheLongestAlphabeticalContinuousSubstring().new Solution();
}
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public int longestContinuousSubstring(String s) {
int cnt = 0;
int bf = 0;
for (int i = 1; i < s.length(); i++) {
if (s.charAt(i) - s.charAt(i - 1) != 1) {
cnt = Math.max(cnt, i - bf);
bf = i;
}
}
return Math.max(cnt, s.length() - bf);
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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