This commit is contained in:
2026-03-30 10:57:41 +02:00
commit e5506eabca
13 changed files with 203 additions and 0 deletions
@@ -0,0 +1,11 @@
#include "practice.h"
int is_palindrome(struct dlist *l)
{
//FIXME
}
struct list *reverse(struct list *l)
{
//FIXME
}
@@ -0,0 +1,9 @@
#ifndef PRACTICE_H
#define PRACTICE_H
#include "../../utils/lists.h"
int is_palindrome(struct dlist *l);
struct list *reverse(struct list *l);
#endif /* !PRACTICE_H */