-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbalancedNumber.cs
More file actions
66 lines (56 loc) · 1.75 KB
/
Copy pathbalancedNumber.cs
File metadata and controls
66 lines (56 loc) · 1.75 KB
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace codeWarsBalancedNumber
{
class Program
{
static void Main(string[] args)
{
//balanced number is when the sum of the left side of the middle digit is equal to the sum of the right side
Kata.BalancedNumber(1221);
}
}
class Kata
{
public static string BalancedNumber(int number)
{
List<char> charList = new List<char>();
string numberS = Convert.ToString(number);
charList.AddRange(numberS);
double middleD = charList.Count;
middleD = Math.Truncate(middleD / 2);
int middle = Convert.ToInt32(middleD);
int leftSide = 0;
int rightSide = 0;
if (charList.Count % 2 != 0)
{
for (int i = 0; i < middle; i++)
{
leftSide += Convert.ToInt32(charList[i].ToString());
}
for (int i = middle + 1; i < charList.Count; i++)
{
rightSide += Convert.ToInt32(charList[i].ToString());
}
}
else
{
for (int i = 0; i < middle - 1; i++)
{
leftSide += Convert.ToInt32(charList[i].ToString());
}
for (int i = middle + 1; i < charList.Count; i++)
{
rightSide += Convert.ToInt32(charList[i].ToString());
}
}
if (leftSide == rightSide)
return "Balanced";
else
return "Not Balanced";
}
}
}