first commit

This commit is contained in:
2025-10-23 14:28:03 +02:00
commit fb76e22594
81 changed files with 3605 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <assert.h>
int main(int argc, char *argv[]){
if(argc != 3) {
fprintf(stderr, "Usage :%s <max> <n>\n",argv[0]);
return 1;
}
long N = strtol(argv[1], NULL,0);
long M = strtol(argv[2], NULL,0);
}