1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-07-27 07:11:06 +02:00
CodeWars/7kyu/binary_addition/solution.cs
Matej Focko fc899b0b02
chore: initial commit
Signed-off-by: Matej Focko <mfocko@redhat.com>
2021-12-28 16:19:58 +01:00

18 lines
244 B
C#

using System;
public static class Kata
{
public static string AddBinary(int a, int b)
{
var sum = a + b;
var result = "";
while (sum > 0) {
result = $"{sum % 2}" + result;
sum /= 2;
}
return result;
}
}