-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathchallenge.rb
38 lines (31 loc) · 904 Bytes
/
challenge.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
# Fork this repository to your personal account and
# clone that fork to your machine.
#
# Answer each of the questions below, adding comments
# beneath them as appropriate.
# 1. Read this file. What do you expect it to do when
# you run it?
# => Print out how many A's and Z's there are.
# 2. Now run it. Are there any bugs?
# => No bugs so far
# 3. Can you make any improvements to the program?
# => I believe I can
# 4. How many Q's are there in "prufrock.txt"?
# => There is one
# 5. (Harder) What are the 5 most common letters in "prufrock.txt"?
# When you're done (at least with 4), commit your work,
# push it to your repo, and open a pull request.
require 'pry'
text = File.read "prufrock.txt"
cs = Hash.new
text.chars.each do |l|
if cs[l]
cs[l] = cs[l] + 1
else
cs[l] = 1
end
end
ac = cs[:Q]
zc = cs[:Q]
#puts "Text is: #{text}"
puts "There are #{ac} Q's and #{zc} Q's"