PlotnikovPhilipp

Untitled

Sep 24th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. """
  2.  
  3.    Алгоритм реализации структуры данных - дерева
  4.  
  5. """
  6. class Tree:
  7.     def __init__(self, left, right):
  8.         self.left = left
  9.         self.right = right
Add Comment
Please, Sign In to add comment