Желе , 18 13 10 байт
×⁵RDP$€io-
Попробуйте онлайн!
13-байтовое решение:
×⁵RDP$€iµ’¹¬?
Попробуйте онлайн!
Объяснение с вводом N
:
׳R create a range from 1 to N * 100 (replace ³ with ⁵ for a faster execution time)
DP$ define a function ($) to get the product of the digits of a number,
€ apply that function to each element in the list,
iµ get the index of the input N in the list (or 0 if it's not there), and yeild it as the input to the next link,
’¹¬? conditional: if the answer is 0, then subtract one to make it -1, otherwise, yeild the answer
18-байтовое решение:
D×/
×⁵RÇ€i
Ç⁾-1¹¬?
Попробуйте онлайн!
D×/ product of digits function, takes input M
D split M into digits,
×/ reduce by multiplication (return product of digits)
×⁵RÇ€i range / index function
×⁵R make a range from 1 to N*10,
Ç€ run the above function on each of the range elements,
i get the index of N in the result, or 0 if it's not there
Ç⁾-1¹¬? main function:
Ç ¬? run the line above and check if the answer is null (0)
⁾-1 if it is, return "-1",
¹ otherwise, return the answer (identity function).
Последняя ссылка предназначена только для замены 0 (значение по умолчанию для Jelly по умолчанию, поскольку все списки имеют один индекс) на -1. Если вы считаете 0 допустимым значением Falsey, программа занимает 8 байт .
1
предоставление1
является важным тестовым примером.