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
    
  
  
    
  | https://github.com/JustSilverman/survey_gorilla | 
  
    
      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
    
  
  
    
  | https://github.com/mashbash/formvalidation.git | 
  
    
      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
    
  
  
    
  | https://github.com/mashbash/css_singlepagenav.git | 
  
    
      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 dictionary_sort(arr) | |
| puts arr.sort | |
| end | |
| def input_dictionary | |
| puts "Type a word:" | |
| arr = [] | |
| arr << gets | |
| input = '' | 
  
    
      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 super_fizzbuzz(array) | |
| new_array=[] | |
| array.each do |i| | |
| if array[i]%15 == 0 | |
| new_array[i] = "FizzBuzz" | |
| elsif array[i]%3 == 0 | |
| new_array[i] = "Fizz" | |
| elsif array[i]%5 == 0 | |
| new_array[i] = "Buzz" | |
| else | 
NewerOlder