Files
leetcode/else/structs/List.h
2025-09-15 21:12:04 +08:00

8 lines
108 B
C

#ifndef List_h
#define List_h
struct ListNode{
int value;
struct ListNode * next;
}
#endif //List_h