I want to find time plexity of following code. I have an array of integer having duplicate values. I created set from array to remove duplicate entries and then initialize new array from that set using spread operator.
Code:
let list=[1,1,2,3,4,4]
let uniqueNumbers=[...new Set(list)]
console.log(uniqueNumbers)
I want to find time plexity of following code. I have an array of integer having duplicate values. I created set from array to remove duplicate entries and then initialize new array from that set using spread operator.
Code:
let list=[1,1,2,3,4,4]
let uniqueNumbers=[...new Set(list)]
console.log(uniqueNumbers)
Share
Improve this question
asked Nov 30, 2020 at 18:01
Asad GulzarAsad Gulzar
6726 silver badges10 bronze badges
1 Answer
Reset to default 13There are 2 things being done here:
new Set(list)
iterates over every element of thelist
and puts it into a Set. This isO(n)
[...set]
iterates over every element of the Set and puts it into an array. This will also beO(n)
in nearly all cases.
Both operations are O(n)
, so overall, the putational plexity is O(n)
.