From 40125a7671e65336f2b00e5dd385015ea62d51f3 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Mon, 8 Jul 2024 14:38:44 +0100 Subject: - Added solutions by Eric Cheung. - Added solutions by Ulrich Rieke. - Added solutions by PokGoPun. - Added solutions by Niels van Dijke. - Added solutions by Mark Anderson. - Added solutions by Feng Chang. --- challenge-277/eric-cheung/python/ch-1.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 challenge-277/eric-cheung/python/ch-1.py (limited to 'challenge-277/eric-cheung/python/ch-1.py') diff --git a/challenge-277/eric-cheung/python/ch-1.py b/challenge-277/eric-cheung/python/ch-1.py new file mode 100755 index 0000000000..c08ac8a721 --- /dev/null +++ b/challenge-277/eric-cheung/python/ch-1.py @@ -0,0 +1,16 @@ + +## Example 1 +## arrWords_01 = ["Perl", "is", "my", "friend"] +## arrWords_02 = ["Perl", "and", "Raku", "are", "friend"] + +## Example 2 +## arrWords_01 = ["Perl", "and", "Python", "are", "very", "similar"] +## arrWords_02 = ["Python", "is", "top", "in", "guest", "languages"] + +## Example 3 +arrWords_01 = ["Perl", "is", "imperative", "Lisp", "is", "functional"] +arrWords_02 = ["Crystal", "is", "similar", "to", "Ruby"] + +arrOutput = [strLoop for strLoop in set(arrWords_01 + arrWords_02) if arrWords_01.count(strLoop) == 1 and arrWords_02.count(strLoop) == 1] + +print (len(arrOutput)) -- cgit