-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring.rb
40 lines (35 loc) · 917 Bytes
/
string.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
class String
def unique_chars?
hash_count = {}
self.each_char do |char|
hash_count[char] ||= -1
hash_count[char] += 1
return false if hash_count[char] > 0
end
true
end
def remove_duplicates
memoization = {}
string_with_no_duplicates = ""
self.each_char do |char|
if memoization[char].nil?
memoization[char] = true
string_with_no_duplicates += char
end
end
string_with_no_duplicates
end
def anagram?(string)
sanatize_self = self.gsub(" ","").downcase
sanatize_string = string.gsub(" ","").downcase
sanatize_self.bytes.reduce(&:+) == sanatize_string.bytes.reduce(&:+)
end
end
def reverse_c_string(string)
string_to_reverse = string.slice(0, string.length - 1)
reversed_string = ""
string_to_reverse.each_char do |char|
reversed_string = char + reversed_string
end
reversed_string += "\0"
end