59
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
5
namespace GoogleUnitsConversion
6
{
7
//https://medium.com/@alexgolec/google-interview-problems-ratio-finder-d7aa8bf201e3
8
class Program
9
{
10
static (string source, string destination, double coef)[] coeffs = {
11
("foot", "inch", 12),
12
("hand", "inch", 4),
13
("mile", "foot", 5280),
14
("light year", "km", 9.461e+12),
15
("km", "mile", 0.621371)
16
};
17
static void Main(string[] args)
18
{
19
var allCoeffs = Queryable.Union<(string source, string destination, double coef)>(coeffs.AsQueryable(), coeffs.Select(s => (s.destination, s.source, 1 / s.coef))).ToArray();
20
21
22
var unit1 = "hand";
23
var unit2 = "light year";
24
var result = SearchConversion(allCoeffs, unit1, unit2);
Cached Result