All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g3201_3300.s3210_find_the_encrypted_string.Solution Maven / Gradle / Ivy

The newest version!
package g3201_3300.s3210_find_the_encrypted_string;

// #Easy #String #2024_07_09_Time_1_ms_(100.00%)_Space_42.8_MB_(34.96%)

public class Solution {
    public String getEncryptedString(String s, int k) {
        int n = s.length();
        int localK = k % n;
        return s.substring(localK, n) + s.substring(0, localK);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy