diff --git a/solution/3600-3699/3628.Maximum Number of Subsequences After One Inserting/README_EN.md b/solution/3600-3699/3628.Maximum Number of Subsequences After One Inserting/README_EN.md index 8fed5e0a2150e..431d3c281b51f 100644 --- a/solution/3600-3699/3628.Maximum Number of Subsequences After One Inserting/README_EN.md +++ b/solution/3600-3699/3628.Maximum Number of Subsequences After One Inserting/README_EN.md @@ -18,9 +18,7 @@ edit_url: https://github.com/doocs/leetcode/edit/main/solution/3600-3699/3628.Ma
You are allowed to insert at most one uppercase English letter at any position (including the beginning or end) of the string.
-Return the maximum number of "LCT"
subsequences that can be formed in the resulting string after at most one insertion.
A subsequence is a non-empty string that can be derived from another string by deleting some or no characters without changing the order of the remaining characters.
+Return the maximum number of "LCT"
subsequences that can be formed in the resulting string after at most one insertion.
Example 1:
diff --git a/solution/3600-3699/3629.Minimum Jumps to Reach End via Prime Teleportation/README_EN.md b/solution/3600-3699/3629.Minimum Jumps to Reach End via Prime Teleportation/README_EN.md index f1c85de9adcf1..dccf2e56c18fc 100644 --- a/solution/3600-3699/3629.Minimum Jumps to Reach End via Prime Teleportation/README_EN.md +++ b/solution/3600-3699/3629.Minimum Jumps to Reach End via Prime Teleportation/README_EN.md @@ -15,7 +15,6 @@ edit_url: https://github.com/doocs/leetcode/edit/main/solution/3600-3699/3629.MiYou are given an integer array nums
of length n
.
You start at index 0, and your goal is to reach index n - 1
.
i + 1
or i - 1
, if the index is within bounds.nums[i]
is a prime number p
, you may instantly jump to any index j != i
such that nums[j] % p == 0
.nums[i]
is a prime number p
, you may instantly jump to any index j != i
such that nums[j] % p == 0
.Return the minimum number of jumps required to reach index n - 1
.
A prime number is a natural number greater than 1 with only two factors, 1 and itself.
-
Example 1:
diff --git a/solution/3600-3699/3630.Partition Array for Maximum XOR and AND/README_EN.md b/solution/3600-3699/3630.Partition Array for Maximum XOR and AND/README_EN.md index d2a4d7839a1d6..7c4f1fa57c72f 100644 --- a/solution/3600-3699/3630.Partition Array for Maximum XOR and AND/README_EN.md +++ b/solution/3600-3699/3630.Partition Array for Maximum XOR and AND/README_EN.md @@ -15,9 +15,8 @@ edit_url: https://github.com/doocs/leetcode/edit/main/solution/3600-3699/3630.PaYou are given an integer array nums
.
Partition the array into three (possibly empty) subsequences A
, B
, and C
such that every element of nums
belongs to exactly one subsequence.
Partition the array into three (possibly empty) subsequences A
, B
, and C
such that every element of nums
belongs to exactly one subsequence.
Your goal is to maximize the value of: XOR(A) + AND(B) + XOR(C)
Return the maximum value achievable.
Note: If multiple partitions result in the same maximum sum, you can consider any one of them.
-A subsequence is an array that can be derived from another array by deleting some or no elements without changing the order of the remaining elements. +
Example 1: