-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecipher.java
34 lines (25 loc) · 846 Bytes
/
decipher.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import java.util.HashMap;
import java.util.LinkedHashMap;
public class decipher {
public static String decodeMessage(String key, String message) {
HashMap<Character, Character> map = new LinkedHashMap<>();
int k = 0;
for (int i = 0; i < key.length(); i++) {
char c = key.charAt(i);
if (c != ' ' && !map.containsKey(c)) {
char value = (char) ('a' + k);
map.putIfAbsent(c, value);
k++;
}
}
map.put(' ', ' ');
String ans = "";
for (char c : message.toCharArray()) {
ans += map.get(c);
}
return ans;
}
public static void main(String[] args) {
System.out.println(decodeMessage("the quick brown fox jumps over the lazy dog", "vkbs bs t suepuv"));
}
}