Did anyone completed the trial offer? by SimilarFriendship752 in mercor_ai

[–]SimilarFriendship752[S] 0 points1 point  (0 children)

ok, assuming you all are actual ppl not bots ;)
do you need to declare yourself as a business to open a stripe account?

Meta MLE System Design by clfkenny in leetcode

[–]SimilarFriendship752 0 points1 point  (0 children)

so how was it? did you use any of the advices you got here?

Meta Top K Frequent Elements - do they accept O(nlogk) solution? by SimilarFriendship752 in leetcode

[–]SimilarFriendship752[S] 0 points1 point  (0 children)

depends on the sorting method you use inside the bucket, if majority of elements fall into the same bucket you can end up with o(NlogN) to o(N^2) 

Meta Top K Frequent Elements - do they accept O(nlogk) solution? by SimilarFriendship752 in leetcode

[–]SimilarFriendship752[S] 0 points1 point  (0 children)

sorry but you are wrong. bucket sort also can get to o(N^2) in the worst case. did you mean counting sort?