-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path0242-valid-anagram.rb
49 lines (38 loc) · 1.07 KB
/
0242-valid-anagram.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# frozen_string_literal: true
# 242. Valid Anagram
# https://leetcode.com/problems/valid-anagram
# Easy
=begin
Given two strings s and t, return true if t is an anagram of s, and false otherwise.
An Anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once.
Example 1:
Input: s = "anagram", t = "nagaram"
Output: true
Example 2:
Input: s = "rat", t = "car"
Output: false
Constraints:
1 <= s.length, t.length <= 5 * 104
s and t consist of lowercase English letters.
=end
# @param {String} s
# @param {String} t
# @return {Boolean}
def is_anagram(s, t)
counter = s.chars.reduce(Hash.new(0)) { |ha, ch| ha[ch] += 1; ha }
t.chars.each do |ch|
counter[ch] -= 1
return false if counter[ch] < 0
end
counter.values.all?(&:zero?)
end
# **************** #
# TEST #
# **************** #
require "test/unit"
class Test_is_anagram < Test::Unit::TestCase
def test_
assert_equal true, is_anagram("anagram", "nagaram")
assert_equal false, is_anagram("rat", "car")
end
end