This commit is contained in:
2025-07-14 19:23:17 +08:00
parent ec59538a98
commit 72843d1812
3 changed files with 72 additions and 0 deletions

12
include/solution/1290.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef INC_1290_H
#define INC_1290_H
#ifdef __cplusplus
extern "C"
{
#endif
#include <ListNode.h>
int getDecimalValue(struct ListNode *head);
#ifdef __cplusplus
}
#endif
#endif