PYTHON: Quite surprisingly it gives me error not with my code with with sample tests: from solution import duplicate_count
ImportError: cannot import name 'duplicate_count' from 'solution'. - those are modules for tests. Anyone encoutered the same problem?
Oh yes, I am dumb. Thank you very much, sir.
Make sure your function's name is
duplicate_count
and not something else.PYTHON: Quite surprisingly it gives me error not with my code with with sample tests: from solution import duplicate_count
ImportError: cannot import name 'duplicate_count' from 'solution'. - those are modules for tests. Anyone encoutered the same problem?
This comment is hidden because it contains spoiler information about the solution