-
Notifications
You must be signed in to change notification settings - Fork 39
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
Fire - Noor #26
base: master
Are you sure you want to change the base?
Fire - Noor #26
Conversation
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.
Well done Noor, you have hit the learning goals. I did make one comment on the time/space complexity of top_k_frequent_elements
, but otherwise well done.
# Time Complexity: O(nm) where n is array length(words) and m is word length(letters) | ||
# Space Complexity: O(n) | ||
|
||
def grouped_anagrams(strings) |
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.
👍
lib/exercises.rb
Outdated
# Time Complexity: O (n) | ||
# Space Complexity: O (n) | ||
def top_k_frequent_elements(list, k) |
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.
👍 However because you're sorting the time complexity is O(n log n).
Thank you Chris :) |
Hash Table Practice
Congratulations! You're submitting your assignment!
Comprehension Questions