mirror of
https://github.com/lWolvesl/leetcode.git
synced 2026-01-13 02:38:37 +08:00
8 lines
108 B
C
8 lines
108 B
C
#ifndef List_h
|
|
#define List_h
|
|
struct ListNode{
|
|
int value;
|
|
struct ListNode * next;
|
|
}
|
|
|
|
#endif //List_h
|