Ad
  • Custom User Avatar

    If there is always a function, and three inputs to the function run() then perhaps this would be a better setup?:

    def run(function, a, b, c):
      pass
    

    or

    def run(function, args):
      pass
    

    Anyway the idea for the kata isn't great I'm afraid. Katas shouldn't be about redefining in-built functions...
    I suggest you un-publish and get more practice at soling katas - better ideas will come with time.

  • Default User Avatar

    Very bad description