6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

C#で「ソフトウェアエンジニアならば1時間以内に解けなければいけない5つの問題」の5問目

Last updated at Posted at 2015-05-25

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"));
        }
    }
}
6
6
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?