码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode937

时间:2018-11-12 17:41:28      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:list   files   file   return   derby   leetcode   indexof   array   tco   

public class Solution
    {
        public string[] ReorderLogFiles(string[] logs)
        {
            var list1 = new List<string>();
            var list2 = new List<string>();
            foreach (var log in logs)
            {
                var spacePosition = log.IndexOf( );
                var c = log[spacePosition + 1];
                if (c >= 48 && c <= 57)
                {
                    list2.Add(log);
                }
                else
                {
                    list1.Add(log);
                }
            }
            var list = list1.OrderBy(x => x.Substring(x.IndexOf( ) + 1)).ToList();
            list.AddRange(list2);
            return list.ToArray();
        }
    }

 

leetcode937

标签:list   files   file   return   derby   leetcode   indexof   array   tco   

原文地址:https://www.cnblogs.com/asenyang/p/9946817.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!