码迷,mamicode.com
首页 > 编程语言 > 详细

LeetCode-771 Jewels and Stones Solution with Java

时间:2020-03-02 12:48:38      阅读:56      评论:0      收藏:0      [点我收藏+]

标签:ons   one   har   class   etc   style   contains   info   src   

1. Description:

技术图片

Notes:技术图片

2. Examples: 技术图片

3.Solutions:

1 public int numJewelsInStones(String J, String S) {
2         int num = 0;
3         for (int i = 0; i < S.length(); i++) {
4             if (J.contains(S.charAt(i) + ""))
5                 num++;
6         }
7         return num;
8     }

LeetCode-771 Jewels and Stones Solution with Java

标签:ons   one   har   class   etc   style   contains   info   src   

原文地址:https://www.cnblogs.com/sheepcore/p/12394816.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!