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
# hidden files | |
.* | |
# but not .gitignore | |
!/.gitignore | |
build/ | |
bin/ | |
*.log | |
*.zip | |
### Scala/Java ### |
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
var table = new SimpleHashTable | |
// generate 10000 entries | |
// A to Z a to z ascii entries | |
val range = (65 to 90) ++ (97 to 122) | |
var count = 0 | |
val chars = for { | |
a <- range | |
b <- range | |
c <- range |