Quick actions

cmd+k|ctrl+k

Navigation

Languages

Big O(n^2)

Snippet info

Language

JavaScript

Visibility

public

Author

mibitstech

Created

2023-07-08T09:33:23.401587Z

Updated

2023-07-08T09:33:23.401587Z

// 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)
INFO