mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
12 lines
168 B
C#
12 lines
168 B
C#
|
public class Kata
|
||
|
{
|
||
|
public static bool Include(int[] arr, int item)
|
||
|
{
|
||
|
foreach (var e in arr) {
|
||
|
if (e == item) return true;
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
}
|