Syncing to work on interview with entrepreneur essay

This commit is contained in:
Aidan Sharpe
2024-04-14 16:42:27 -04:00
parent bd992d7643
commit 5ad6a9ca32
67 changed files with 2899 additions and 520 deletions

View File

@@ -0,0 +1,11 @@
// Calculate the maximum value in an array of floats
float arrMaxf(float* arr, unsigned int length);
// Calculate the minimum value in an array of floats
float arrMinf(float* arr, unsigned int length);
// Calculate the index of the maximum value in an array of floats
unsigned int arrMaxfIndex(float* arr, unsigned int length);
// Calculate the index of the minimum value in an array of floats
unsigned int arrMinfIndex(float* arr, unsigned int length);