899. Orderly Queue
Easy
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.
解ι‘
k ηζΌ 1 ηζεεͺθ½ε€ δΈζ·ζ第δΈεεζ―ζͺε°ε±θ‘οΌεε³ε ΆδΈζε°ηεδΈ²γθ k 倧ζΌηζΌ2ηζεοΌε―δ»₯ζεεΊζζη΅εοΌζδ»₯η΄ζ₯η¨ sort ε ¬εΌζεΊεε³ε³ε―γ
Runtime: 0 ms, faster than 100%
Memory Usage: 4.9 MB, less than 60%
Last updated