You are viewing a single comment's thread. Return to all comments →
The code for Javascript and Ruby also has the same mistakes.
var [low, high] = readLine().trim().split(' '); low = parseInt(low); high = parseInt(high);
low, high = gets.strip.split(' ') low = low.to_i high = high.to_i
Seems like cookies are disabled on this browser, please enable them to open this website
Max-Min Difference in an Interval
You are viewing a single comment's thread. Return to all comments →
The code for Javascript and Ruby also has the same mistakes.