-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
c-sharp-solutions.cs
122 lines (101 loc) · 1.98 KB
/
c-sharp-solutions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
public class CustomMath {
public static int multiply(int a, int b) {
return a * b;
}
}
// ------------------------
using System;
namespace Solution
{
public class SolutionClass
{
public static string EvenOrOdd(int number)
{
if (number % 2 == 0) return "Even";
return "Odd";
}
}
}
// ------------------------
using System;
public class Kata
{
public static int Opposite(int number)
{
return number * -1;
}
}
// ------------------------
using System;
using System.Linq;
public class Kata
{
public static int PositiveSum(int[] arr)
{
var sum = 0;
for (var i = 0; i < arr.Length; i++) {
if (arr[i] > 0) {
sum += arr[i];
}
}
return sum;
}
}
// ------------------------
using System.Linq;
public class Kata
{
public static int FindSmallestInt(int[] args)
{
var smallest = args[0];
// for (var i = 1; i < args.Length; i++) {
// if (args[i] < smallest) {
// smallest = args[i];
// }
// }
args.ToList().ForEach(value => {
if (value < smallest) {
smallest = value;
}
});
return smallest;
}
}
// ------------------------
using System;
public static class Kata
{
public static int MakeNegative(int number)
{
/* if (number < 0) return number;
return number * -1; */
return -Math.Abs(number);
}
}
// ------------------------
using System;
using System.Linq;
using System.Collections.Generic;
public static class Kata
{
public static int GetVowelCount(string str)
{
Dictionary<char, bool> vowels = new Dictionary<char, bool>()
{
{ 'a', true },
{ 'e', true },
{ 'i', true },
{ 'o', true },
{ 'u', true },
};
int vowelCount = 0;
foreach (var letter in str)
{
if (vowels.ContainsKey(letter))
{
vowelCount++;
}
}
return vowelCount;
}
}