We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
public static String encryption(String s) {
// Write your code here
StringBuilder str = new StringBuilder("");
int column = (int)Math.ceil(Math.sqrt(s.length()));
s = s.replace("\s","").toLowerCase();
Encryption
You are viewing a single comment's thread. Return to all comments →
Here is my Java Code :)
public static String encryption(String s) { // Write your code here StringBuilder str = new StringBuilder(""); int column = (int)Math.ceil(Math.sqrt(s.length())); s = s.replace("\s","").toLowerCase();
}