@@ -0,0 +1,11 @@
+def well(x):
+ goodKataCount = 0
+ for i in x:
+ if i == 'good':
+ goodKataCount += 1
+ if goodKataCount == 0:
+ return 'Fail!'
+ if goodKataCount in [1, 2]:
+ return 'Publish!'
+ if goodKataCount > 2:
+ return 'I smell a series!'