1400. Construct K Palindrome Strings
https://leetcode.com/problems/construct-k-palindrome-strings
Description
Given a string s
and an integer k
. You should construct k
non-empty palindrome strings using all the characters in s
.
Return True if you can use all the characters in s
to construct k
palindrome strings or False otherwise.
Example 1:
Example 2:
Example 3:
Example 4:
Example 5:
Constraints:
1 <= s.length <= 10^5
All characters in
s
are lower-case English letters.1 <= k <= 10^5
ac
Last updated