0899. Orderly Queue
https://leetcode.com/problems/orderly-queue
Description
You are given a string s
and an integer k
. You can choose one of the first k
letters of s
and append it at the end of the string..
Return the lexicographically smallest string you could have after applying the mentioned step any number of moves.
Example 1:
Example 2:
Constraints:
1 <= k <= s.length <= 1000
s
consist of lowercase English letters.
ac
Last updated