Skip to content

Commit 20fe297

Browse files
alter include file of problem 328
1 parent 4beb711 commit 20fe297

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* The first node is considered odd, the second node even and so on ...
1313
*/
1414
#include
15-
#include "../headers/problem_301_350.h"
15+
#include "../main.h"
1616

1717
struct ListNode *oddEvenList(struct ListNode *head) {
1818
if (head == NULL || head->next == NULL || head->next->next == NULL) {

0 commit comments

Comments
 (0)