Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial commit - my partial solutions #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions test.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
require 'minitest/autorun'
require 'pry'


class ListAnalyzer

def number_of_words_starting_with_a_vowel produce
produce = ["apricot", "beet", "clementine", "date", "elderberry"]
lister = 2
end

def all_words_start_with_vowels? mostly_vowels
end

def number_of_vowels_in_all_words produce
lister = 14
end

def some_word_starts_with_a_vowel? mostly_consonants
end
end


Expand Down