Leetcode Java Jewels and Stones
업데이트:
문제
코드
class Solution {
public int numJewelsInStones(String jewels, String stones) {
int count = 0;
for (char c : stones.toCharArray()) {
if (jewels.indexOf(c) != -1) {
count++;
}
}
return count;
}
}
결과
설명
-
보석의 종류인 jewels를 이용하여 stones 내 몇 개의 보석이 포함되었는지 찾는 문제이다.
-
count는 stones 내 보석의 개수를 저장할 변수이다.
-
stones의 모든 문자들을 이용하여 jewels에 포함된 단어가 있으면 count를 증가시킨다.
-
반복이 완료되면 stones 내 보석의 개수인 count를 주어진 문제의 결과로 반환한다.
소스
Sample Code는 여기에서 확인 가능합니다.
댓글남기기