I am implementing some functionality where I need to create a helper class for custom Math operations. Is it a good practice to implement an interface in this scenario?
Usually we have single implementation for helper classes however in some scenarios we may have complex logic in helper class which can have multiple implementations.
I tried to search on web but could not find answer which is specific to a helper class.
Please advise.
Thanks in advance.