This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'csv' | |
require 'twilio-ruby' | |
################################################# | |
class Student | |
attr_reader :name, :phone_number | |
def initialize(args = {}) | |
@name = args[:name] | |
@phone_number = args[:phone_number] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
want to... | |
have method ,sum, that is able to calculate the sum of all numbers in an Array | |
have method,mean, that is able to calculate the average of all numbers in an Array | |
have method,median, that is able to calculate the median of all numbers in an Array | |
number of items in an Array can be both odd or even | |
//Add a reflection to your gist. Use the reflection guidelines to guide your reflection. Aslo answer the following: | |
// This was a fun project that solidified the code writing process. It was interesting to see person 4's translation come out |