LeetCode之Keyboard Row

简介: LeetCode之Keyboard Row

1、题目:

Given a List of words, return the words that can be typed using letters of  alphabet  on only one row's of American keyboard like the image below.

1.png

Example 1:

1. Input: ["Hello", "Alaska", "Dad", "Peace"]
2. Output: ["Alaska", "Dad"]

2、代码实现:

import java.util.ArrayList;
public class Solution {
      public ArrayList<String> resultList;
      //检验这个字符串是否全在同一行
      public boolean check(String s1, String s2) {
          if (s1 == null) {
              return false;
          }
          for (int i = 0; i < s1.length(); ++i) {
              if (s2.indexOf(s1.charAt(i)) == -1) {
                  return false;
              }
          }
          return true;
      }
      public  String[] findWords(String[] words) {
          //检验字符串数组是否都为null
          if (words == null) {
              return null;
          }
          int length = words.length;
          String s1 = "qwertyuiop";
          String s2 = "asdfghjkl";
          String s3 = "zxcvbnm";
          resultList = new ArrayList<String>();
          //判断每次
          for (int i = 0; i < length; ++i) {
            String lowerStr = words[i].toLowerCase();
            if (lowerStr != "") {
                  if (s1.indexOf(lowerStr.charAt(0)) != -1) {
                       if(check(lowerStr, s1))
                           resultList.add(words[i]);
                  }
                  if (s2.indexOf(lowerStr.charAt(0)) != -1) {
                   if(check(lowerStr, s2))
                        resultList.add(words[i]);
                }
                  if (s3.indexOf(lowerStr.charAt(0)) != -1) {
                  if(check(lowerStr, s3))
                        resultList.add(words[i]);
                  } 
              }
          }
        String[] strArr = new String[resultList.size()];
        resultList.toArray(strArr);
          return strArr;
      }
}

3、遇到的问题:

特么我一开始把在if后面加了

if(check(lowerStr, s1));

导致所有的数据都加进去了,以后要注意,不要乱鸡吧写,在if后面加上;

 


相关文章
Leetcode 623. Add One Row to Tree
题目很简单,在树的第d层加一层,值为v。递归增加一层就好了。代码如下
47 0
[LeetCode] Add One Row to Tree 二叉树中增加一行
Given the root of a binary tree, then value v and depth d, you need to add a row of nodes with value v at the given depth d.
1071 0
|
2月前
|
Unix Shell Linux
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
本文提供了几个Linux shell脚本编程问题的解决方案,包括转置文件内容、统计词频、验证有效电话号码和提取文件的第十行,每个问题都给出了至少一种实现方法。
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
|
3月前
|
Python
【Leetcode刷题Python】剑指 Offer 32 - III. 从上到下打印二叉树 III
本文介绍了两种Python实现方法,用于按照之字形顺序打印二叉树的层次遍历结果,实现了在奇数层正序、偶数层反序打印节点的功能。
57 6
|
3月前
|
Python
【Leetcode刷题Python】剑指 Offer 26. 树的子结构
这篇文章提供了解决LeetCode上"剑指Offer 26. 树的子结构"问题的Python代码实现和解析,判断一棵树B是否是另一棵树A的子结构。
51 4
|
3月前
|
搜索推荐 索引 Python
【Leetcode刷题Python】牛客. 数组中未出现的最小正整数
本文介绍了牛客网题目"数组中未出现的最小正整数"的解法,提供了一种满足O(n)时间复杂度和O(1)空间复杂度要求的原地排序算法,并给出了Python实现代码。
114 2
|
22天前
|
机器学习/深度学习 人工智能 自然语言处理
280页PDF,全方位评估OpenAI o1,Leetcode刷题准确率竟这么高
【10月更文挑战第24天】近年来,OpenAI的o1模型在大型语言模型(LLMs)中脱颖而出,展现出卓越的推理能力和知识整合能力。基于Transformer架构,o1模型采用了链式思维和强化学习等先进技术,显著提升了其在编程竞赛、医学影像报告生成、数学问题解决、自然语言推理和芯片设计等领域的表现。本文将全面评估o1模型的性能及其对AI研究和应用的潜在影响。
17 1
|
2月前
|
数据采集 负载均衡 安全
LeetCode刷题 多线程编程九则 | 1188. 设计有限阻塞队列 1242. 多线程网页爬虫 1279. 红绿灯路口
本文提供了多个多线程编程问题的解决方案,包括设计有限阻塞队列、多线程网页爬虫、红绿灯路口等,每个问题都给出了至少一种实现方法,涵盖了互斥锁、条件变量、信号量等线程同步机制的使用。
LeetCode刷题 多线程编程九则 | 1188. 设计有限阻塞队列 1242. 多线程网页爬虫 1279. 红绿灯路口
|
3月前
|
索引 Python
【Leetcode刷题Python】从列表list中创建一颗二叉树
本文介绍了如何使用Python递归函数从列表中创建二叉树,其中每个节点的左右子节点索引分别是当前节点索引的2倍加1和2倍加2。
58 7