Post History
Japt v1.4.5, 7 bytes â¬d!øUs Try it â¬d!øUs :Implicit input of integer U ⬠:Divisors, excluding itself d :Are any !ø : Contained in Us : The s...
#1: Initial revision
# [Japt](https://github.com/ETHproductions/japt) v1.4.5, 7 [bytes](https://en.wikipedia.org/wiki/ISO/IEC_8859-1)
â¬d!øUs
[Try it](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.5&code=4qxkIfhVcw&input=MTIzNDU2)
â¬d!øUs :Implicit input of integer U
⬠:Divisors, excluding itself
d :Are any
!ø : Contained in
Us : The string representation of U
-----
Or, if we could simply output truthy or falsey values:
## 6 [bytes](https://en.wikipedia.org/wiki/ISO/IEC_8859-1)
⬣søX
[Try it](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.5&flags=LXg&code=4qyjc/hY&input=MTIzNDU2)
⬣søX :Implicit input of integer U
⬠:Divisors, excluding itself
£ :Map each X
s : String representation of U
øX : Contains X
