Unique Morse Code Words

Description

International Morse Code defines a standard encoding where each letter is mapped to a series of dots and dashes, as follows: "a" maps to ".-", "b" maps to "-...", "c" maps to "-.-.", and so on.

For convenience, the full table for the 26 letters of the English alphabet is given below:

[".-","-...","-.-.","-..",".","..-.","--.","....","..",".---","-.-",".-..","--","-.","---",".--.","--.-",".-.","...","-","..-","...-",".--","-..-","-.--","--.."]

Now, given a list of words, each word can be written as a concatenation of the Morse code of each letter. For example, "cab" can be written as "-.-.-....-", (which is the concatenation "-.-." + "-..." + ".-"). We'll call such a concatenation, the transformation of a word.

Return the number of different transformations among all words we have.

Example:
Input: words = ["gin", "zen", "gig", "msg"]
Output: 2
Explanation:
The transformation of each word is:
"gin" -> "--...-."
"zen" -> "--...-."
"gig" -> "--...--."
"msg" -> "--...--." There are 2 different transformations, "--...-." and "--...--.".

Note

  • The length of words will be at most 100.
  • Each words[i] will have length in range [1, 12].
  • words[i] will only consist of lowercase letters.

Discuss

把字母对应的字符串存起来,一次遍历每一个单词,然后去重就可以了。

Code

class Solution {
public int uniqueMorseRepresentations(String[] words) {
List<String> list = Arrays.asList(".-","-...","-.-.","-..",".","..-.","--.","....","..",".---","-.-",".-..",
"--","-.","---",".--.","--.-",".-.","...","-","..-","...-",".--","-..-","-.--","--..");
Map<Integer, String> map = new HashMap<>();
int ans = 0;
for (int i = 97; i <= 122; i++) {
map.put(i, list.get(ans++));
}
Set<String> set = new HashSet<>();
for (int i = 0; i < words.length; i++) {
StringBuilder sb = new StringBuilder();
for (int j = 0; j < words[i].length(); j++) {
sb.append(map.get(Integer.valueOf(words[i].charAt(j))));
}
set.add(sb.toString());
}
return set.size();
}
}

最新文章

  1. Memento(备忘录)-对象行为型模式
  2. 图解集合3:CopyOnWriteArrayList
  3. Js位置与大小(1)&mdash;&mdash;正确理解和运用与尺寸大小相关的DOM属性
  4. C#中Attribute的继承
  5. jquery 中$.post获取MVC Controller中JsonResult返回包含LIst&lt;Model&gt;类型的子List&lt;Model&gt;的高级使用方法
  6. (转)Ubuntu 12.04 LTS 构建高可用分布式 MySQL 集群
  7. tableview 编辑状态设置
  8. STL_set&amp;multiset
  9. 哥德尔,图灵和康托尔 part 2 停机问题
  10. 使用diff和patch指令生成文件差异和还原文件
  11. vSphere Client 搭建Windows server 2008 r2 服务器指南
  12. 20170319 - pycurl 提示 libcurl link-time version is older than compile-time version
  13. 软件工程(GZSD2015)学生博客列表
  14. Python replace
  15. wamp设置本地访问路径为a.com
  16. Vivaldi浏览器媲美Chrome
  17. java mysql大数据量批量插入与流式读取分析
  18. 用面向对象的编程方式实现飞机大战小游戏,java版
  19. jQuery-对标签的样式操作
  20. jquery.validate1.9.0前台验证使用

热门文章

  1. TP5.0:访问不同模块方法,跳转视图页面
  2. 初识Scrum
  3. 长大DeepMind第一次团队作业
  4. IOS VLC (第三方音频)的使用
  5. CentOS如何部署TinyProxy
  6. (第四场)F Beautiful Garden
  7. Docker 常用指令
  8. context.RewritePath
  9. Extjs treePanel 的treestore重复加载问题解决
  10. 一个nginx反向代理, 负载均衡的例子