Skip to content

Instantly share code, notes, and snippets.

View mathildathompson's full-sized avatar

mathilda thompson mathildathompson

View GitHub Profile

Sum of Multiples

If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.

Write a program that, given a number, can find the sum of all the multiples of 3 or 5 up to and including that number.

Allow the program to be configured to find the sum of multiples of numbers other than 3 and 5.

parseInt(amount, 10) //Saying that the number is base 10 so we dont get a radix error;
window.ATM making it a global variable;
_ //A method called underscore;
_.methods( _ ).join(' ')
cdnjs //A content library for JS sources //Advantage is that;
class Garden
def initialize(seeds)
@seeds = seeds
@students = ["Alice", "Bob", "Charlie", "David", "Eve", "Fred", "Ginny", "Harriet", "Ileana", "Joseph", "Kincaid", "Larry"]
@student_seed_dictionary = create_student_seed_dictionary
find_student
end
def create_student_seed_dictionary
student_seed_dictionary = {}

Kindergarden Garden

The kindergarden class is learning about growing plants. The teachers thought it would be a good idea to give them actual seeds, plant them in actual dirt, and grow actual plants.

They've chosen to grow grass, clover, radishes, and violets.

To this end, they've put little styrofoam cups along the window sills, and planted one type of plant in each cup, choosing randomly from the available

location.href= "http://www.google.com"
MouseEvents
TouchEvents
KeyboardEvents
-Submit event;
-Window events, scroll, resize//resize the window, hashchange //the change after the hash, load //once the window finishes loading;

tools => new_snippet source.js put the code you wanna use in the content section; tab trigger what you tab to got the snippet; saves inside sublime txt make sure the file extension is js.sublime-snippet #As soon as you have done that it will be useable;

class Raindrop
def convert(number)
unless isthree?(number) || isfive?(number) || isseven?(number)
return number.to_s
end
s = ''
s += 'Pling' if isthree?(number)
s += 'Plang' if isfive?(number)
s += 'Plong' if isseven?(number)

Pling Plang Plong

Write a program that converts a number to a string per the following rules:

If the number contains 3 as a prime factor, output 'Pling'. If the number contains 5 as a prime factor, output 'Plang'. If the number contains 7 as a prime factor, output 'Plong'.

If the number does not contain 3, 5, or 7 as a prime factor, simply return the string representation of the number itself.

//Javascript, you can write coffeescript and it will convert it to javascrip;
//Resource => coffeescript.org
//A lambda in Ruby is the same as an anonymous function in JS;
//Thigs that are inside of a function are not avaible outside of the function;
//A statement is a line that ends in a semi-colon;
//An expression is part of a statment, a statement is also an expresson;
//In Ruby everything is an expression and everything returns a value, in Javascript this is not always the case;

Grains

There once was a wise servant who saved the life of a prince. The king promised to pay whatever the servant could dream up. Knowing that the king loved chess, the servant told the king he would like to have grains of wheat. One grain on the first square of a chess board. Two grains on the next. Four on the third, and so on.

There are 64 squares on a chessboard.

Write a program that shows

  • how many grains were on each square, and
  • the total number of grains