We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf7a8e9 commit 2bf90a4Copy full SHA for 2bf90a4
src/main/kotlin/g0401_0500/s0402_remove_k_digits/Solution.kt
@@ -3,6 +3,7 @@ package g0401_0500.s0402_remove_k_digits
3
// #Medium #String #Greedy #Stack #Monotonic_Stack
4
// #2022_12_01_Time_375_ms_(75.00%)_Space_42.8_MB_(66.67%)
5
6
+@Suppress("NAME_SHADOWING")
7
class Solution {
8
fun removeKdigits(num: String, k: Int): String {
9
var k = k
0 commit comments