Thạch , 18 13 10 byte
×⁵RDP$€io-
Hãy thử trực tuyến!
Giải pháp 13 byte:
×⁵RDP$€iµ’¹¬?
Hãy thử trực tuyến!
Giải thích với đầu vào 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
Giải pháp 18 byte:
D×/
×⁵RÇ€i
Ç⁾-1¹¬?
Hãy thử trực tuyến!
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).
Liên kết cuối cùng chỉ để thay thế 0 (giá trị falsey mặc định của Jelly, vì tất cả các danh sách đều được lập chỉ mục một) bằng -1. Nếu bạn coi 0 là một giá trị falsey OK, chương trình là 8 byte .
1
cho1
là một trường hợp thử nghiệm quan trọng.