We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5775263 commit 1414946Copy full SHA for 1414946
0098_Validate_Binary_Search_Tree.java
@@ -1,7 +1,13 @@
1
-// id: 98
2
-// Name: Validate Binary Search Tree
3
-// link: https://leetcode.com/problems/validate-binary-search-tree/
4
-// Difficulty: Medium
+/*
+ * 98. Validate Binary Search Tree
+ * Problem Link: https://leetcode.com/problems/validate-binary-search-tree/
+ * Difficulty: Medium
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
+ */
11
12
class Solution {
13
public boolean isValidBST(TreeNode root) {
0 commit comments