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
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<title>untitled</title> | |
<meta name="generator" content="TextMate http://macromates.com/"> | |
<meta name="author" content="Apprentice"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> | |
<script src="http://codeclasschat.herokuapp.com/helpers.js"></script> |
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
def translate(string) | |
vowel = ["a", "e", "i", "o", "u", "y"] | |
if ((vowel.include? string[0]) == false) && ((vowel.include? string[1]) == false) && ((vowel.include? string[2]) == false) | |
string = string[3..-1] + string[0..2] + "ay" | |
elsif ((vowel.include? string[0]) == false) && ((vowel.include? string[1]) == false) | |
string = string[2..-1] + string[0..1] + "ay" | |
elsif (vowel.include? string[0]) == true | |
string = string + "ay" | |
elsif string[0..1] == "qu" |
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
def game(pair) | |
raise WrongNumberOfPlayersError unless pair.length == 2 | |
strategy = pair[0][1].downcase + pair[1][1].downcase | |
if ["rs", "sp", "pr"].include?(strategy) | |
#return "#{pair[0]} wins since #{pair[0][1]} > #{pair[1][1]}}" | |
return pair[0] | |
elsif ["sr", "ps", "rp"].include?(strategy) | |
#return "#{pair[1]} wins since #{pair[1][1]} > #{pair[0][1]}}" | |
return pair[1] |
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
# VARIABLE SCOPE | |
=Begin | |
$example A global variable | |
@example An instance variable | |
example A local variable | |
Example A constant | |
@@example A class variable |
NewerOlder