Published onJuly 2, 2022[LeetCode 242] Valid AnagramMapGiven two strings `s` and `t`, return `true` if `t` is an anagram of `s`, and `false` otherwise.
Published onMay 24, 2022[LeetCode 387] First Unique Character in a StringMapGiven a string `s`, find the first non-repeating character in it and return its index.
Published onApril 10, 2022[LeetCode 149] Max Points on a LineMapGiven an array of `points` where `points[i] = [xi, yi]` represents a point on the **X-Y** plane, return the maximum number of points that lie on the same straight line.