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

leetcode970

时间:2019-01-22 11:48:13      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:double   orderby   list()   tin   int   order   public   bsp   tco   

public class Solution
    {
        public IList<int> PowerfulIntegers(int x, int y, int bound)
        {            
            var list = new List<int>();
            for (int i = 0; i < bound; i++)
            {
                for (int j = 0; j < bound; j++)
                {
                    var num =
                        Math.Pow((double)x, (double)i)
                        +
                        Math.Pow((double)y, (double)j);
                    if (num <= bound)
                    {
                        list.Add((int)num);
                    }
                    else
                    {
                        if (j == 0)
                        {
                            return list.Distinct().OrderBy(a => a).ToList();
                        }
                        else
                        {
                            break;//换行
                        }
                    }
                }
            }
            return list.Distinct().OrderBy(a => a).ToList();
        }
    }

 

leetcode970

标签:double   orderby   list()   tin   int   order   public   bsp   tco   

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

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