This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* joins.sql | |
* 2/21/19 | |
* Aditya Jhanwar | |
*/ | |
-- 1. | |
select matchid, player from goal | |
where teamid = 'GER' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class BinarySearchTree: | |
""" | |
A simple program implementing a Binary Search Tree using only the key values | |
Node for the BST is implemented as a private class for encapsulation | |
""" | |
class __Node: | |
def __init__(self, key): | |
self.key, self.left, self.right = key, None, None |