Skip to content

Instantly share code, notes, and snippets.

View mintyPT's full-sized avatar
🦑

MG Santos mintyPT

🦑
View GitHub Profile
function doubleiter(nums: number[], target: number): number[] {
for(let i = 0; i<nums.length; i++){
for(let j = i+1; j<nums.length; j++){
}
}
};
const fs = require("fs")
const puppeteer = require("puppeteer")
// First level config
const project = "atelier/05"
const count = 50
// Second level config
const folder = `screenshots/${project}/`