Skip to content

Commit b06c803

Browse files
committed
fix: remove redundant print's from solution
1 parent 1e5b507 commit b06c803

File tree

1 file changed

+0
-5
lines changed
  • src/hashmap_set/determine_if_two_strings_are_close

1 file changed

+0
-5
lines changed

src/hashmap_set/determine_if_two_strings_are_close/solution.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,3 @@ def closeStrings(self, word1: str, word2: str) -> bool:
1010
sorted(word1_counter.values()) == sorted(word2_counter.values())
1111
and word2_counter.keys() == word2_counter.keys()
1212
)
13-
14-
15-
print(Solution().closeStrings(word1="abc", word2="bca"))
16-
print(Solution().closeStrings(word1="a", word2="aa"))
17-
print(Solution().closeStrings(word1="cabbba", word2="abbccc"))

0 commit comments

Comments
 (0)