Skip to content

Latest commit

 

History

History

easy-microsoft-digits-sum-10

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Description

Good morning! Here's your coding interview problem for today.

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.

Source

Received by email from the Daily Coding Problem