MCPcopy Index your code
hub / github.com/Blankj/awesome-java-leetcode / main

Method main

src/com/blankj/hard/_0010/Solution.java:70–79  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

68 }
69
70 public static void main(String[] args) {
71 Solution solution = new Solution();
72 System.out.println(solution.isMatch("aa", "a")); // false
73 System.out.println(solution.isMatch("aa", "aa")); // true
74 System.out.println(solution.isMatch("aaa", "aa")); // false
75 System.out.println(solution.isMatch("aa", "a*")); // true
76 System.out.println(solution.isMatch("aa", ".*")); // true
77 System.out.println(solution.isMatch("ab", ".*")); // true
78 System.out.println(solution.isMatch("aab", "c*a*b"));// true
79 }
80}

Callers

nothing calls this directly

Calls 1

isMatchMethod · 0.95

Tested by

no test coverage detected