mirror of
https://git.wolves.top/wolves/leetcode.git
synced 2025-11-04 17:26:32 +08:00
init
This commit is contained in:
19
24/02/235.h
Normal file
19
24/02/235.h
Normal file
@@ -0,0 +1,19 @@
|
||||
//
|
||||
// Created by 李洋 on 2024/2/25.
|
||||
//
|
||||
|
||||
#ifndef LEETCODE_C_235_H
|
||||
#define LEETCODE_C_235_H
|
||||
|
||||
struct TreeNode {
|
||||
int val;
|
||||
struct TreeNode *left;
|
||||
struct TreeNode *right;
|
||||
};
|
||||
|
||||
|
||||
struct TreeNode* lowestCommonAncestor(struct TreeNode* root, struct TreeNode* p, struct TreeNode* q) {
|
||||
|
||||
}
|
||||
|
||||
#endif //LEETCODE_C_235_H
|
||||
Reference in New Issue
Block a user