mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
18 lines
244 B
C#
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;
|
||
|
}
|
||
|
}
|