diff --git a/codeflash/result/common_tags.py b/codeflash/result/common_tags.py new file mode 100644 index 000000000..b800cf314 --- /dev/null +++ b/codeflash/result/common_tags.py @@ -0,0 +1,12 @@ +from __future__ import annotations + + +def find_common_tags(articles: list[dict[str, list[str]]]) -> set[str]: + if not articles: + return set() + + common_tags = articles[0].get("tags", []) + for article in articles[1:]: + common_tags = [tag for tag in common_tags if tag in article.get("tags", [])] + return set(common_tags) + \ No newline at end of file diff --git a/tests/test_common_tags.py b/tests/test_common_tags.py new file mode 100644 index 000000000..ce5bda359 --- /dev/null +++ b/tests/test_common_tags.py @@ -0,0 +1,23 @@ +from codeflash.result.common_tags import find_common_tags + + +def test_common_tags_1() -> None: + articles_1 = [ + {"title": "Article 1", "tags": ["Python", "AI", "ML"]}, + {"title": "Article 2", "tags": ["Python", "Data Science", "AI"]}, + {"title": "Article 3", "tags": ["Python", "AI", "Big Data"]}, + ] + + expected = {"Python", "AI"} + + assert find_common_tags(articles_1) == expected + + articles_2 = [ + {"title": "Article 1", "tags": ["Python", "AI", "ML"]}, + {"title": "Article 2", "tags": ["Python", "Data Science", "AI"]}, + {"title": "Article 3", "tags": ["Python", "AI", "Big Data"]}, + {"title": "Article 4", "tags": ["Python", "AI", "ML"]}, + ] + + assert find_common_tags(articles_2) == expected + \ No newline at end of file