Skip to content

Commit 43a40cf

Browse files
init commit
0 parents  commit 43a40cf

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

C/328-Odd-Even-Linked-List.c

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/**
2+
* Definition for singly-linked list.
3+
* struct ListNode {
4+
* int val;
5+
* struct ListNode *next;
6+
* };
7+
*/
8+
9+
struct ListNode {
10+
int val;
11+
struct ListNode *next;
12+
};
13+
14+
struct ListNode* oddEvenList(struct ListNode* head) {
15+
16+
}

0 commit comments

Comments
 (0)