Clevermind
.uk
What is the time complexity of the following function? ```function myFunction(n) { for (let i = 0; i < n; i++) { for (let j = 0; j < n; j++) { console.log(i, j); } } }```
O(n^2)
O(n)
O(1)
O(n log n)
Software Engineering Exercises are loading ...