Untitled

mail@pastecode.io avatar
unknown
python
5 months ago
225 B
3
Indexable
recommendations = ProductRecommendations()
recommendations.add_visit("product_1")
recommendations.add_visit("product_2")
recommendations.add_visit("product_1")
recommendations.get_recommendation()  # should return "product_1"
Leave a Comment