In a project management tool, you need to ensure each task is unique but also maintain their insertion order. Which data structure would you use?

  • Set
  • Array
  • WeakSet
  • Map
In this case, an Array is the most appropriate choice. It allows you to maintain the order of tasks while ensuring uniqueness. Unlike Set, which only stores unique values without any specific order, an Array meets both requirements for this project management tool.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *