-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathUnique-Morse-Code-Words.cs
56 lines (52 loc) · 1.35 KB
/
Unique-Morse-Code-Words.cs
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using System.Collections.Generic;
using System.Text;
namespace _804_Unique_Morse_Code_Words
{
public class Solution
{
public int UniqueMorseRepresentations(string[] words)
{
var arr =
new string[26]
{
".-",
"-...",
"-.-.",
"-..",
".",
"..-.",
"--.",
"....",
"..",
".---",
"-.-",
".-..",
"--",
"-.",
"---",
".--.",
"--.-",
".-.",
"...",
"-",
"..-",
"...-",
".--",
"-..-",
"-.--",
"--.."
};
var hs = new HashSet<string>();
foreach (string word in words)
{
var sb = new StringBuilder();
for (int i = 0; i < word.Length; i++)
{
sb.Append(arr[word[i] - 'a']);
}
hs.Add(sb.ToString());
}
return hs.Count;
}
}
}