Skip to content

Instantly share code, notes, and snippets.

# University of Washington, Programming Languages, Homework 7,
# hw7tests.rb
require 'simplecov'
SimpleCov.command_name "My Tests"
SimpleCov.start
require "./hw7testsprovided.rb"
class Object
@draconar
draconar / hackerrank_stdout
Created January 15, 2015 01:10
reading the results obtained from stdin data
process.stdin.on("end", function () {
var r = _input.split('\n');
for(var i = 1; i < r.length; i++) {
console.log( processData(r[i]) );
}
});