最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin2浏览0评论

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).

发布评论

评论列表(0)

  1. 暂无评论