Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ViewModel Data Structure Optimization #139

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

DK96-OS
Copy link

@DK96-OS DK96-OS commented Nov 7, 2023

Update GameViewModel, replacing LinkedHashSet with TreeSet.

* Update GameViewModel.kt - replace LinkedHashSet with TreeSet
@DK96-OS
Copy link
Author

DK96-OS commented Nov 17, 2023

For educational purposes, it is better to be explicit about the data structure being used. Kotlin's mutableSetOf method creates a LinkedHashSet.

A better starting point for the code uses a TreeSet because it provides the necessary Set features without the overhead of Linking and Hashing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant