Skip to content

Commit b3f2393

Browse files
committed
Formatted 0100_Same_Tree.java
1 parent 56a5806 commit b3f2393

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

Diff for: 0100_Same_Tree.java

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1-
// id: 100
2-
// Name: Same Tree
3-
// link: https://leetcode.com/problems/same-tree/
4-
// Difficulty: Easy
1+
/*
2+
* 100. Same Tree
3+
* Problem Link: https://leetcode.com/problems/same-tree/
4+
* Difficulty: Easy
5+
*
6+
* Solution Created by: Muhammad Khuzaima Umair
7+
* LeetCode : https://leetcode.com/mkhuzaima/
8+
* Github : https://github.com/mkhuzaima
9+
* LinkedIn : https://www.linkedin.com/in/mkhuzaima/
10+
*/
511

612
class Solution {
713
public boolean isSameTree(TreeNode p, TreeNode q) {

0 commit comments

Comments
 (0)