1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-18 12:02:53 +02:00

feat: usage of ESM modules imports (instead of CommonJS) (#14)

This commit is contained in:
Divlo
2022-04-23 18:41:14 +02:00
committed by GitHub
parent c502c17e7c
commit 104c61935a
44 changed files with 6623 additions and 5171 deletions

View File

@ -17,7 +17,7 @@ void print_couple(int* numbers, size_t couple_length) {
int main() {
size_t couple_length;
scanf("%ld\n", &couple_length);
scanf("%lu\n", &couple_length);
char* string = input();
char* token = strtok(string, " ; ");
size_t numbers_length = 1;