From 73c2b00a10c5786ddeeacc915e233fd4df1c9321 Mon Sep 17 00:00:00 2001 From: Martial Simon Date: Sat, 11 Oct 2025 22:19:00 +0200 Subject: fix: evalexpr & tinyprintf contenaient toute la piscine --- .../tinyprintf/sieve_eratosthenes_advanced/sieve.c | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 rushs/tinyprintf/sieve_eratosthenes_advanced/sieve.c (limited to 'rushs/tinyprintf/sieve_eratosthenes_advanced/sieve.c') diff --git a/rushs/tinyprintf/sieve_eratosthenes_advanced/sieve.c b/rushs/tinyprintf/sieve_eratosthenes_advanced/sieve.c deleted file mode 100644 index 7dd4816..0000000 --- a/rushs/tinyprintf/sieve_eratosthenes_advanced/sieve.c +++ /dev/null @@ -1,39 +0,0 @@ -#include -#include - -void sieve(int n) -{ - if (n <= 2) - { - return; - } - - // Generate array - int *a = calloc(n, sizeof(int)); - int count = 0; - - // Actual sieve and count - for (int i = 2; i < n; i++) - { - if (a[i] == 0) - { - for (int k = 2 * i; k < n; k += i) - { - a[k] = 1; - } - } - } - - for (int i = 2; i < n; i++) - { - if (a[i] == 0) - { - count++; - } - } - - // Print the count - printf("%d\n", count); - - free(a); -} -- cgit v1.2.3