TopCoder SRM620: CandidatesSelectionEasy
問題文通りにソートする。OrderBy
は安定ソートのため、ThenBy(p => p.index0)
は実は必要ない。
public class CandidatesSelectionEasy { public int[] sort(string[] score, int x) { return score .Select((s, index0) => new { s, index0 }) .OrderBy(p => p.s[x]) .ThenBy(p => p.index0) .Select(p => p.index0) .ToArray(); } }