This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zarejestruj się
Zaloguj się
wolves
/
leetcode
kopia lustrzana
https://git.wolves.top/wolves/leetcode.git
Obserwuj
1
Polub
0
Forkuj
0
Pliki
Problemy
0
Wiki
Drzewo:
3f58f483ff
Gałęzie
Tagi
main
leetcode
/
else
/
structs
/
List.h
List.h
108 B
Historia
Czysty
1
2
3
4
5
6
7
8
#ifndef List_h
#define List_h
struct ListNode{
int value;
struct ListNode * next;
}
#endif //List_h