using System;
using System.Linq;
public static class Program {
public static int[] Puzzle(int[] a) {
return a.OrderBy(s => s).ToArray();
}
}
My code and wrong information
不良依赖性
[System.Core程序] System.Linq.IOrderedEnumerable`1
为什么我错了?平台是否可以支持OrderBy?我是否需要自定义排序功能?代码可以在VS2015中成功运行,我试过了。
www.codehunt.com
答案 0 :(得分:1)
尝试按照。
using System;
using System.Linq;
public static class Program {
public static int[] Puzzle(int[] a)
{
return Array.Sort(a);
}
}