Skip to content

Commit c898474

Browse files
committed
Runtime: 44 ms (Top 25.64%) | Memory: 42.9 MB (Top 94.32%)
1 parent 2546861 commit c898474

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/C/Construct K Palindrome Strings/Construct K Palindrome Strings.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 44 ms (Top 25.64%) | Memory: 42.9 MB (Top 94.32%)
12
class Solution {
23
public boolean canConstruct(String s, int k) {
34
if(k==s.length())
@@ -31,4 +32,4 @@ else if(k>s.length())
3132
}
3233
return (odd<=k);
3334
}
34-
}
35+
}

0 commit comments

Comments
 (0)