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

leetcode378

时间:2017-05-13 13:30:45      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:erb   tps   .com   problems   length   get   var   http   code   

public class Solution {
    public int KthSmallest(int[,] matrix, int k) {
        var row = matrix.GetLength(0);
            var col = matrix.GetLength(1);

            var list = new List<int>();

            for (int i = 0; i < row; i++)
            {
                for (int j = 0; j < col; j++)
                {
                    list.Add(matrix[i, j]);
                }
            }

            list = list.OrderBy(x => x).ToList();
            return list[k - 1];
    }
}

https://leetcode.com/problems/kth-smallest-element-in-a-sorted-matrix/#/description

leetcode378

标签:erb   tps   .com   problems   length   get   var   http   code   

原文地址:http://www.cnblogs.com/asenyang/p/6848512.html

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