Posts by Thiago Born • 26 points
1 post
-
-1
votes1
answer49
viewsA: How to Shuffle String Value? (JAVA ANDROID)
This function will solve: public static String shuffle(String text) { Random random = new Random(); List<Character> collect = text.chars().mapToObj(c -> (char)…