SolutionTest.java 383 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package com.aen.leetcode;

/**
 * Title: {@link com.aen.leetcode}
 * Description:
 *
 * @author 谭 tmn
 * @email AbelEthan@126.com
 * @date 20-10-19 下午5:39
 */
public class SolutionTest {

    public static void main(String[] args) {
        Solution solution = new Solution();
        int i = solution.numJewelsInStones("aA", "aAAbbbb");
        System.out.println(i);
    }
}