Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimize file CheckPermutation.py to be more Pythonic. #38

Merged
merged 4 commits into from
Mar 21, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 0 additions & 35 deletions Chapter 1/2_Check Permutation/CheckPermutation.py

This file was deleted.

File renamed without changes.
43 changes: 43 additions & 0 deletions Chapter1/2_Check Permutation/CheckPermutation.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# O(N)
import unittest
from collections import Counter


def check_permutation(str1, str2):
if len(str1) != len(str2):
return False
counter = Counter()
for c in str1:
counter[c] += 1
for c in str2:
if counter[c] == 0:
return False
counter[c] -= 1
return True


class Test(unittest.TestCase):
dataT = (
('abcd', 'bacd'),
('3563476', '7334566'),
('wef34f', 'wffe34'),
)
dataF = (
('abcd', 'd2cba'),
('2354', '1234'),
('dcw4f', 'dcw5f'),
)

def test_cp(self):
# true check
for test_strings in self.dataT:
result = check_permutation(*test_strings)
self.assertTrue(result)
# false check
for test_strings in self.dataF:
result = check_permutation(*test_strings)
self.assertFalse(result)


if __name__ == "__main__":
unittest.main()
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions Chapter4/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Trees and graphs
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Python Solutions to *Cracking the Coding Interview, 6th Edition*

This is a **Python** solutions for the book [Cracking the Coding Interview, 6th Edition](https://www.careercup.com/book) by *Gayle Laakmann McDowell*.

## How to use?

To run the programs, just use the `python ChapterX/filename.py` command.

The test cases are included in the solution files.
5 changes: 0 additions & 5 deletions readme.md

This file was deleted.