javascript - What is the Time Complexity of creating set from array? - Stack Overflow

I want to find time plexity of following code. I have an array of integer having duplicate values. I cr

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
Add a ment  | 

1 Answer 1

Reset to default 13

There are 2 things being done here:

  • new Set(list) iterates over every element of the list and puts it into a Set. This is O(n)
  • [...set] iterates over every element of the Set and puts it into an array. This will also be O(n) in nearly all cases.

Both operations are O(n), so overall, the putational plexity is O(n).

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743658083a4485723.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信