Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
cae11fe
Implement exercise binart-search-tree
rodrigocam Oct 8, 2017
d8256db
Add TreeNode class and binary search tree add method
rodrigocam Oct 8, 2017
5b65169
Add preorder, postorder and inorder traversal
rodrigocam Oct 8, 2017
06b303f
Add search method
rodrigocam Oct 8, 2017
b39e8d8
Add some tests
rodrigocam Oct 8, 2017
a5350dc
Add more testes, examle file and a readme
rodrigocam Oct 8, 2017
5604b08
Fix flake8 diretives
rodrigocam Oct 8, 2017
1013ec8
Add a new entry to config.json
rodrigocam Oct 8, 2017
5883681
Change new key place
rodrigocam Oct 8, 2017
ab2fa3e
Change search paramater name and add early if condition to exit if th…
rodrigocam Oct 10, 2017
1425ffc
Change exercise position in config.json
rodrigocam Oct 27, 2017
cb4e3bf
Merge branch 'master' into master
cmccandless Oct 27, 2017
fed194a
Merge branch 'master' into master
cmccandless Oct 27, 2017
9990ec2
Merge branch 'master' into master
cmccandless Oct 27, 2017
7192861
fix config.json syntax error
cmccandless Oct 27, 2017
3fe384e
Add blank line
rodrigocam Nov 3, 2017
62c5933
Add title at readme
rodrigocam Nov 3, 2017
49f6701
Add necessary info at readme
rodrigocam Nov 3, 2017
10627f2
Add skeletons for add and search methods
rodrigocam Nov 3, 2017
f4d558f
Change assert used by tests
rodrigocam Nov 3, 2017
5663d14
Add list method
rodrigocam Nov 3, 2017
56f971b
Change tests to include the new list method
rodrigocam Nov 3, 2017
fa1de56
Merge branch 'master' into master
cmccandless Nov 3, 2017
805557a
Fix flake8 guidelines
rodrigocam Nov 9, 2017
3b916a5
Change search and add method
rodrigocam Nov 9, 2017
1332fdc
Merge branch 'master' of https://github.com/rodrigocam/python
rodrigocam Nov 9, 2017
cd94b1f
Change variable name in search method and delete .cache directory
rodrigocam Nov 13, 2017
18c399f
Remove spaces on blank line
rodrigocam Nov 13, 2017
a01cb5a
Change parameter of search method
rodrigocam Nov 13, 2017
c054b29
Remove print methods
rodrigocam Nov 13, 2017
d43a2ba
Merge branch 'master' into master
Nov 13, 2017
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
Prev Previous commit
Next Next commit
Merge branch 'master' into master
  • Loading branch information
cmccandless authored Oct 27, 2017
commit cb4e3bf1070a365029f5ab2429ec618fa92436de
73 changes: 73 additions & 0 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -1039,6 +1039,79 @@
"mathematics"
]
},
{
"uuid": "92e2d5f8-7d8a-4e81-a55c-52fa6be80c74",
"slug": "diffie-hellman",
"core": false,
"unlocked_by": "book-store",
"difficulty": 7,
"topics": [
"algorithms"
]
},
{
"uuid": "8c89f739-05fb-7b80-b5f9-6ad079c750ba8302be8",
"slug": "two-bucket",
"difficulty": 5,
"topics": [
"algorithms",
"loops",
"conditionals"
]
},
{
"uuid": "1818f134-0ed9-e680-9b29-45ffd2b3344b0f841c7",
"slug": "markdown",
"difficulty": 3,
"topics": [
"refactoring"
]
},
{
"uuid": "e348a307-078c-5280-65af-a159283d4e79438b755",
"slug": "forth",
"core": false,
"unlocked_by": null,
"difficulty": 5,
"topics": [
"parsing",
"stacks"
]
},
{
"uuid": "f229746e-5ea9-4774-b3e0-9b9c2ebf9558",
"slug": "food-chain",
"core": false,
"unlocked_by": null,
"difficulty": 4,
"topics": [
"algorithms",
"loops",
"conditionals"
]
},
{
"uuid": "4f5f890d-0db4-5480-f79a-21057c37871b15133dc",
"slug": "zipper",
"core": false,
"unlocked_by": null,
"difficulty": 8,
"topics": [
"recursion",
"searching",
"trees"
]
},
{
"uuid": "3a2a947a-01b3-1e80-e32b-de1756fd88365adf12e",
"slug": "error-handling",
"core": false,
"unlocked_by": null,
"difficulty": 3,
"topics": [
"exception_handling"
]
},
{
"uuid": "6f196341-0ffc-9780-a7ca-1f817508247161cbcd9",
"slug": "binary-search-tree",
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.