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
    
  
  
    
  | function HashTable(size) { | |
| this.size = size; | |
| this.keys = this.initArray(size); | |
| this.values = this.initArray(size); | |
| this.limit = 0; | |
| } | |
| HashTable.prototype.initArray = function(size) { | |
| var array = []; | |
| for (var i = 0; i < size; i++) { | 
  
    
      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
    
  
  
    
  | alias gaip='git add . -i --patch' | |
| alias gcane='git commit --amend --no-edit' | |
| alias gprum='git pull --rebase upstream master' | |
| alias gpsu='git push --set-upstream origin spark_config |