summaryrefslogtreecommitdiff
path: root/progs/a200.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a200.py')
-rw-r--r--progs/a200.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/progs/a200.py b/progs/a200.py
new file mode 100644
index 0000000..cab3875
--- /dev/null
+++ b/progs/a200.py
@@ -0,0 +1,6 @@
+def test_three_equal(x,y,z):
+ result= set([x,y,z])
+ if len(result)==3:
+ return 0
+ else:
+ return (4-len(result)) \ No newline at end of file