Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 323 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 323 Bytes

79.Valid Anagram

Description

Given two strings s and t, write a function to determine if t is an anagram of s.

Example1

Input: 'anagram', 'nagaram'
Output: true

Example2

Input: 'rat', 'car'
Output: false

From

LeetCode