leetcode.com 2026-06-30
🟡1358.number-of-substrings-containing-all-three-characters
🏷️ Tags
#hash_table #string #sliding_window
🟡1358.number-of-substrings-containing-all-three-characters
🏷️ Tags
#hash_table #string #sliding_window
Telegraph
number-of-substrings-containing-all-three-characters
Given a string s consisting only of characters a, b and c. Return the number of substrings containing at least one occurrence of all these characters a, b and c. Example 1: Input: s = "abcabc" Output: 10 Explanation: The substrings containing at least one…
leetcode.cn 2026-07-08
🟡3756.concatenate-non-zero-digits-and-multiply-by-sum-ii
🏷️ Tags
#math #string #prefix_sum
🟡3756.concatenate-non-zero-digits-and-multiply-by-sum-ii
🏷️ Tags
#math #string #prefix_sum
Telegraph
concatenate-non-zero-digits-and-multiply-by-sum-ii
给你一个长度为 m 的字符串 s,其中仅包含数字。另给你一个二维整数数组 queries,其中 queries[i] = [li, ri]。
leetcode.com 2026-07-08
🟡3756.concatenate-non-zero-digits-and-multiply-by-sum-ii
🏷️ Tags
#math #string #prefix_sum
🟡3756.concatenate-non-zero-digits-and-multiply-by-sum-ii
🏷️ Tags
#math #string #prefix_sum
Telegraph
concatenate-non-zero-digits-and-multiply-by-sum-ii
You are given a string s of length m consisting of digits. You are also given a 2D integer array queries, where queries[i] = [li, ri]. For each queries[i], extract the substring s[li..ri]. Then, perform the following:
leetcode.cn 2026-07-19
🟡1081.smallest-subsequence-of-distinct-characters
🏷️ Tags
#stack #greedy #string #monotonic_stack
🟡1081.smallest-subsequence-of-distinct-characters
🏷️ Tags
#stack #greedy #string #monotonic_stack
Telegraph
smallest-subsequence-of-distinct-characters
返回 s 字典序最小的子序列,该子序列包含 s 的所有不同字符,且只包含一次。 示例 1: 输入:s = "bcabc" 输出:"abc" 示例 2: 输入:s = "cbacdcbc" 输出:"acdb" 提示:
leetcode.com 2026-07-19
🟡1081.smallest-subsequence-of-distinct-characters
🏷️ Tags
#stack #greedy #string #monotonic_stack
🟡1081.smallest-subsequence-of-distinct-characters
🏷️ Tags
#stack #greedy #string #monotonic_stack
Telegraph
smallest-subsequence-of-distinct-characters
Given a string s, return the lexicographically smallest subsequence of s that contains all the distinct characters of s exactly once. Example 1: Input: s = "bcabc" Output: "abc" Example 2: Input: s = "cbacdcbc" Output: "acdb" Constraints:
leetcode.cn 2026-07-22
🔴3501.maximize-active-section-with-trade-ii
🏷️ Tags
#segment_tree #array #string #binary_search
🔴3501.maximize-active-section-with-trade-ii
🏷️ Tags
#segment_tree #array #string #binary_search
Telegraph
maximize-active-section-with-trade-ii
给你一个长度为 n 的二进制字符串 s ,其中:
leetcode.com 2026-07-22
🔴3501.maximize-active-section-with-trade-ii
🏷️ Tags
#segment_tree #array #string #binary_search
🔴3501.maximize-active-section-with-trade-ii
🏷️ Tags
#segment_tree #array #string #binary_search
Telegraph
maximize-active-section-with-trade-ii
You are given a binary string s of length n, where:
leetcode.cn 2026-07-28
🟡3517.smallest-palindromic-rearrangement-i
🏷️ Tags
#string #counting_sort #sorting
🟡3517.smallest-palindromic-rearrangement-i
🏷️ Tags
#string #counting_sort #sorting
Telegraph
smallest-palindromic-rearrangement-i
给你一个 回文 字符串 s。 返回 s 的按字典序排列的 最小 回文排列。 如果一个字符串从前往后和从后往前读都相同,那么这个字符串是一个 回文 字符串。 排列 是字符串中所有字符的重排。
leetcode.com 2026-07-28
🟡3517.smallest-palindromic-rearrangement-i
🏷️ Tags
#string #counting_sort #sorting
🟡3517.smallest-palindromic-rearrangement-i
🏷️ Tags
#string #counting_sort #sorting
Telegraph
smallest-palindromic-rearrangement-i
You are given a palindromic string s. Return the lexicographically smallest palindromic permutation of s. Example 1: Input: s = "z" Output: "z" Explanation: A string of only one character is already the lexicographically smallest palindrome. Example 2:…
leetcode.cn 2026-07-29
🔴3518.smallest-palindromic-rearrangement-ii
🏷️ Tags
#hash_table #math #string #combinatorics #counting
🔴3518.smallest-palindromic-rearrangement-ii
🏷️ Tags
#hash_table #math #string #combinatorics #counting
Telegraph
smallest-palindromic-rearrangement-ii
给你一个 回文 字符串 s 和一个整数 k。
leetcode.com 2026-07-29
🔴3518.smallest-palindromic-rearrangement-ii
🏷️ Tags
#hash_table #math #string #combinatorics #counting
🔴3518.smallest-palindromic-rearrangement-ii
🏷️ Tags
#hash_table #math #string #combinatorics #counting
Telegraph
smallest-palindromic-rearrangement-ii
You are given a palindromic string s and an integer k. Return the k-th lexicographically smallest palindromic permutation of s. If there are fewer than k distinct palindromic permutations, return an empty string. Note: Different rearrangements that yield…