Skip to content

Instantly share code, notes, and snippets.

View shashankrustagi's full-sized avatar
😎
keep hustling!!!

Shashank Rustagi shashankrustagi

😎
keep hustling!!!
View GitHub Profile
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };