mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-09-23 15:34:20 +00:00
fix: Apply suggestions from code review
This commit is contained in:
@@ -29,7 +29,7 @@ void swap(uint8_t *first, uint8_t *second)
|
||||
* @param size size of array
|
||||
* @return min_index index of element having minimum value.
|
||||
*/
|
||||
uint8_t findIndex(const uint8_t *arr, const uint8_t& size)
|
||||
uint8_t findIndex(const uint8_t *arr, const uint8_t size)
|
||||
{
|
||||
if (size == 1)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user