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
const problem1 = require("../src/problem1"); | |
const problem2 = require("../src/problem2"); | |
const problem3 = require("../src/problem3"); | |
const problem4 = require("../src/problem4"); | |
const problem5 = require("../src/problem5"); | |
const problem6 = require("../src/problem6"); | |
const problem7 = require("../src/problem7"); | |
test("case4", () => { | |
expect(problem1([1, 2], [211, 212])).toEqual(-1); |
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
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
/* CSS */ | |
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
const Ready = require('./ready.js'); | |
const read = require("readline").createInterface({ | |
input:process.stdin, | |
output:process.stdout, | |
}) | |
function main(){ | |