Post History
Japt, 6 3 bytes Cut in half thanks to Shaggy! ¬v1 Try it online! Golfed thanks to Shaggy's interpreter auto-golf feature. ¬v1 ¬ //Square root v1 //Is that an integer?
Answer
#3: Post edited
- # Japt, <s>6</s> 3 bytes
- Cut in half thanks to Shaggy!
- ```
- ¬v1
- ```
- [Try it online!](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.6&code=rHYx&input=WzAgMSA2NCA4OCAyMTQ3NDgzNjQ3XQotbVM)
Golfed thanks to [Shaggy's interpreter](https://petershaggynoble.github.io/Japt-Interpreter/)'s auto-golf feature.- ```
- ¬v1
- ¬ //Square root
- v1 //Is that an integer?
- ```
- # Japt, <s>6</s> 3 bytes
- Cut in half thanks to Shaggy!
- ```
- ¬v1
- ```
- [Try it online!](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.6&code=rHYx&input=WzAgMSA2NCA4OCAyMTQ3NDgzNjQ3XQotbVM)
- Golfed thanks to [Shaggy](https://codegolf.codidact.com/users/53588)<s>'s interpreter auto-golf feature</s>.
- ```
- ¬v1
- ¬ //Square root
- v1 //Is that an integer?
- ```
#2: Post edited
# Japt, 6 bytes- ```
¬u1 ¥0- ```
[Try it online!](https://ethproductions.github.io/japt/?v=1.4.6&code=rHUxIKUw&input=Mw==)- Golfed thanks to [Shaggy's interpreter](https://petershaggynoble.github.io/Japt-Interpreter/)'s auto-golf feature.
- ```
¬u1 ¥0- ¬ //Square root
u1 //% 1¥0 //Is that 0?- ```
- # Japt, <s>6</s> 3 bytes
- Cut in half thanks to Shaggy!
- ```
- ¬v1
- ```
- [Try it online!](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.6&code=rHYx&input=WzAgMSA2NCA4OCAyMTQ3NDgzNjQ3XQotbVM)
- Golfed thanks to [Shaggy's interpreter](https://petershaggynoble.github.io/Japt-Interpreter/)'s auto-golf feature.
- ```
- ¬v1
- ¬ //Square root
- v1 //Is that an integer?
- ```
#1: Initial revision
# Japt, 6 bytes ``` ¬u1 ¥0 ``` [Try it online!](https://ethproductions.github.io/japt/?v=1.4.6&code=rHUxIKUw&input=Mw==) Golfed thanks to [Shaggy's interpreter](https://petershaggynoble.github.io/Japt-Interpreter/)'s auto-golf feature. ``` ¬u1 ¥0 ¬ //Square root u1 //% 1 ¥0 //Is that 0? ```