使用 ruby 根据其包含的成分查找类似的食谱
我有一系列食谱,每个食谱都有多种成分。该信息存储在连接表中。给一个食谱,我想根据成分找到类似的食谱。我该怎么做呢?
I have a collection of recipes, each having a number of ingredients. This information is stored in a join table. Give a recipe, I'd like to find recipes similar to it based on ingredients. How would I go about doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设一个食谱有 3 种常见成分,则被认为是相似的。
给定一个食谱,您可以获得类似的食谱,如下所示:
Let's assume a recipe is considered similar when it has 3 common ingredients.
Given a recipe you can get similar recipes as follows:
未测试
not tested