首页 > 其他 > 详细

[Daily Coding Problem 70] Nth perfect number

时间:2019-02-06 10:11:06      阅读:210      评论:0      收藏:0      [点我收藏+]

This problem was asked by Microsoft.

A number is considered perfect if its digits sum up to exactly 10.

Given a positive integer n, return the n-th perfect number.

For example, given 1, you should return 19. Given 2, you should return 28.

 

This is one of the problem where you can scratch your head for hours, trying to come up with a "smart" solution but just can‘t. Unfortunately, it doesn‘t seem like there‘s a faster way than simply iterating over all the numbers and keeping track of the current perfect number until we hit n

 

[Daily Coding Problem 70] Nth perfect number

原文:https://www.cnblogs.com/lz87/p/10352481.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!