-
Notifications
You must be signed in to change notification settings - Fork 174
add: queue and stack support #781
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
Conversation
geekygirlsarah
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is great! If you change a couple of the "code" keys to "comment" keys instead, I'll happily merge this!
|
@geekygirlsarah hey! i made the changes requested, lmk if there is anything else that needs an update :) |
geekygirlsarah
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll probably accept this with these two changes so the validating function is happy!
|
@geekygirlsarah made the requested changes :) |
|
I'll go ahead and merge it in. Thank you! Happy Hacktoberfest! |
Resolves #740
What changed and why?
Added comprehensive support for Queues and Stacks in Kotlin (version 1.5) for the Code Thesaurus project.
Changes include:
web/thesauruses/kotlin/1.5/queues_stacks.jsonPriorityQueueArrayDequeimplementationArrayDequeChecklist
Any additional comments or things to be aware of while reviewing?
Leverages Kotlin’s Java interoperability using standard collections (
Queue,LinkedList,ArrayDeque,PriorityQueue).Features:
✅ JSON syntax validated
✅ Follows the established Code Thesaurus format
✅ Compatible with existing validation workflows
✅ Uses Kotlin's standard library (Java interoperability)
✅ Mirrors structure of other languages (Python, C#, Rust, etc.)
✅ Properly marked unimplemented features (circular queues, iterators, etc.)