AniketTheProgrammer
Home
(current)
Courses
Projects
YT Projects
Coding Questions
Notification
Contact Us
Log In
All Topics
C Language
C++ Language
Greedy Algorithm
Hashing
Java Language
Linked List
Python
Queue
Stack
String
Sorting
Searching
Recursion
Backtracking
Dynamic Programming
Graph Theory
Bit Manipulation
Mathematics
Sliding Window Technique
Divide And Conquer
Matrix Manipulation
Two Pointers
Binary Tree
Topic: Divide-and-conquer-question / Level: Beginner
181. Find the maximum length of a subsequence that can be formed using only odd numbers using divide and conquer.
182. Write a function to find the longest common subsequence of three strings using divide and conquer.
183. Given an array, find the number of unique triplets that sum to a specific target using divide and conquer.
184. Implement a function to find the maximum sum of a subarray that has a fixed length using divide and conquer.
185. Write a function to find the first character that repeats in a string using divide and conquer.
186. Given a binary tree, find the maximum width of the tree using divide and conquer.
187. Implement a function to find the longest substring that is a permutation of another string using divide and conquer.
188. Write a function to count the number of vowels in a string using divide and conquer.
189. Given a sorted array, find the number of occurrences of a specific element using divide and conquer.
190. Implement a function to calculate the product of two numbers without using multiplication using divide and conquer.
191. Find the longest subsequence that can be formed using only even numbers in an array using divide and conquer.
192. Write a function to determine if two strings are anagrams of each other using divide and conquer.
193. Given a string, find the first non-repeating character using divide and conquer.
194. Implement a function to find the total number of unique characters in a string using divide and conquer.
195. Write a function to find the longest alternating subsequence in a list of integers using divide and conquer.
196. Given an array, find the number of ways to partition it into two subsets such that their sums are equal using divide and conquer.
197. Implement a function to find the longest substring with at least k distinct characters using divide and conquer.
198. Write a function to check if a number is prime using divide and conquer.
199. Given a string, find the longest palindromic prefix using divide and conquer.
200. Implement a function to find the total number of distinct substrings in a string using divide and conquer.
Previous
1
2
3
4
5
6
7
Next
More Levels
Intermediate
Advanced
Most Visited
Given an array, find the maximum sum of a subarray that has a given sum using divide and conquer.
Given a string, find the first non-repeating character using divide and conquer.
Implement a function to find the first non-repeating character in a string using divide and conquer.
Write a function to find the minimum window substring that contains all characters of another string using divide and conquer.
Write a function to find the longest common prefix among an array of strings using divide and conquer.
Write a function to find the longest common prefix among an array of strings using divide and conquer.
Write a function that generates all possible combinations of a given string using divide and conquer.
Given an integer n, find the number of ways to express it as a sum of positive integers using divide and conquer.
Given a string, find the longest valid parentheses substring using divide and conquer.
Write a function that counts the number of inversions in an array using the merge sort technique.
Given an array, find the number of ways to split it into two subsets such that their sums are equal using divide and conquer.
Write a function to find the longest increasing subsequence of a string using divide and conquer.
Implement a function to find the longest alternating subsequence in a string using divide and conquer.
Write a function to find the longest increasing subsequence in a sequence of numbers using divide and conquer.
Given a binary search tree, find the kth largest element using divide and conquer.