Skip to content
Advertisement

Filter one list using other list in fastest way?

I have one list of objects of Food with fields name and price. I have other list of objects of Category with fields food_name and its category_name.

Now, I want to filter the first list according to the category_name in the second list. How can I do it in fastest way possible?

I am tagging few languages because I just need the filtering logic on any language.

For e.g. in Dart

JavaScript

I want to filter the list of foods according to category name from second list in fastest way possible.

Advertisement

Answer

Using two lists this will cost you O(n^2) time, you should instead consider using a map structure. In Kotlin this can be done as

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement