will it work??
All checks were successful
Deploy / trigger (push) Successful in 22s

This commit is contained in:
2026-04-20 22:59:29 +02:00
parent 532ecd47b6
commit 93ade8c460

View File

@@ -13,7 +13,7 @@ public class Caesar {
public static String[] decode(String ciphertext){
String alphabet = "abcdefghijklmnopqrstuvwxyz";
char encoded[] = ciphertext.toCharArray();
char encoded[] = ciphertext.strip().toCharArray();
char decoded[] = new char[ciphertext.length()];
String bruteforce[] = new String[26];