Big O(n^2)

Run Settings
LanguageJavaScript
Language Version
Run Command
// Big O n^2 const box1 = ['m','i','t','h','u'] function insertInThem(array) { for(let i = 0; i < array.length; i++){ for(let j = 0; j < array.length; j++){ console.log("insert " + array[i] + " in " + array[j] ) } } } insertInThem(box1)
Editor Settings
Theme
Key bindings
Full width
Lines