C#で「ソフトウェアエンジニアならば1時間以内に解けなければいけない5つの問題」の5問目
1時間以内に解けなければプログラマ失格となってしまう5つの問題が話題に - ソフトアンテナブログ
なんとも言えない無理矢理感…
Program.cs
using System;
using System.Linq;
namespace FiveProblemOfFive
{
class Program
{
static void Main(string[] args)
{
Enumerable.Repeat(new[] { " ", "-", "+" }, 9).Aggregate(Enumerable.Repeat("", 1)
, (a, ca) => from s in a from c in ca select s + c)
.Select(p => string.Concat(p.Select((x, i) => "" + x + (i + 1))).Replace(" ", ""))
.TakeWhile(x => !x.StartsWith("+"))
.Select(x => x.Replace("-", "@-").Replace("+", "@+").Split('@').Where(y => y != ""))
.Where(x => x.Select(int.Parse).Sum() == 100)
.ToList().ForEach(x => Console.WriteLine(string.Concat(x) + "=100"));
}
}
}
Author And Source
この問題について(C#で「ソフトウェアエンジニアならば1時間以内に解けなければいけない5つの問題」の5問目), 我々は、より多くの情報をここで見つけました https://qiita.com/shoooo/items/adda4a4eca72f7314c1c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .