Minimum Cost to Hire K Workers
There are N workers. The i-th worker has a quality quality and a minimum wage expectation wage. Now you want to hire exactly K workers to form a paid group.…
Master C, C++, Data Structures, Algorithms, Design Patterns, and More!
There are N workers. The i-th worker has a quality quality and a minimum wage expectation wage. Now you want to hire exactly K workers to form a paid group.…
Given a non-empty string s and an integer k, rearrange the string such that the same characters are at least distance k apart. If no such arrangement is possible, return…
You are given two integer arrays nums1 and nums2 sorted in non-decreasing order and two integers k and target. Find k pairs (a, b) from the arrays such that a…
Given a square matrix matrix, where each row and column is sorted in non-decreasing order, find the kth smallest element in the matrix.
You are given an array of k linked lists, each linked list is sorted in ascending order. Merge all the linked lists into one sorted linked list and return it.
Given an array of distinct integers candidates and a target integer target, return all possible combinations of candidates where the chosen numbers sum to target. You may use the same…
Given a string s, partition s such that every substring of the partition is a palindrome. Return all possible palindrome partitioning of s.
Given a string containing digits from 2 to 9 inclusive, return all possible letter combinations that the number could represent on a telephone keypad. The mapping of digits to letters…
Given a collection of distinct integers, nums, return all possible permutations of the integers.
Given a set of distinct integers nums, return all possible subsets (the power set) of the set.