C Kata - Find the smallest integer in the array
23 Sep 2022 1 minute read 0 comments Lochard
Learning from YayoDrayber, I am sharing my CodeWars Kata. DESCRIPTION: Given an array of integers your solution should find the smallest integer. For example: Given `[34, 15, 88, 2]` your solution will return `2` Given `[34, -345, -1, 100]` your...