Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Challenges

Post History

60%
+1 −0
Challenges Determine whether an integer is square-free

Myby, 12 5 bytes primf=primfd primf : prime factors = : equals primfd : unique prime factors Evaluated as a monadic fork in J (f y) g (h y). The test cases (retest...

posted 1y ago by south‭  ·  edited 1y ago by south‭

Answer
#2: Post edited by user avatar south‭ · 2022-08-20T06:15:21Z (over 1 year ago)
  • # [Myby](https://github.com/ConorOBrien-Foxx/Myby), 12 bytes
  • ```
  • (0<<.)##%(#*#)O"2&R
  • ```
  • ```
  • < : less than
  • <. : minimum
  • # : identity
  • % : modulus
  • * : multiplication
  • O : fork
  • " : map
  • 2&R: bond 2 to dyadic range, 2..
  • ```
  • The evaluation order using a fancy schmancy tree, where `Ψ` represents a fork from J and `@` represents atop from APL, looks like
  • ```
  • (0<<.)##%(#*#)O"2&R
  • ┌─ 0
  • ┌─ Ψ ─┼─ <
  • │ └─ <.
  • │ ┌─ #
  • │ │ ┌─ #
  • ─ @ ─┤ │ ├─ %
  • │ ├─ " ─── O ─┤ ┌─ #
  • └─ Ψ ─┤ └─ Ψ ─┼─ *
  • │ └─ #
  • │ ┌─ 2
  • └─ & ─┴─ R
  • ```
  • The test cases can be viewed [here](https://files.catbox.moe/zoje97.txt) and were generated using [this ruby script](https://files.catbox.moe/jyuigf.rb).
  • # [Myby](https://github.com/ConorOBrien-Foxx/Myby), ~~12~~ 5 bytes
  • ```
  • primf=primfd
  • ```
  • ```
  • primf : prime factors
  • = : equals
  • primfd : unique prime factors
  • ```
  • Evaluated as a monadic fork in J `(f y) g (h y)`.
  • The test cases (retested) can be viewed [here](https://files.catbox.moe/4t2r72.txt) and were generated using [this ruby script](https://files.catbox.moe/jyuigf.rb).
#1: Initial revision by user avatar south‭ · 2022-08-17T06:12:16Z (over 1 year ago)
# [Myby](https://github.com/ConorOBrien-Foxx/Myby), 12 bytes
```
(0<<.)##%(#*#)O"2&R
```
```
<  : less than
<. : minimum
#  : identity
%  : modulus
*  : multiplication
O  : fork
"  : map
2&R: bond 2 to dyadic range, 2..
```
The evaluation order using a fancy schmancy tree, where `Ψ` represents a fork from J and `@` represents atop from APL, looks like 
```
(0<<.)##%(#*#)O"2&R

           ┌─ 0
     ┌─ Ψ ─┼─ <
     │     └─ <.
     │
     │     ┌─ #
     │     │           ┌─ #
─ @ ─┤     │           ├─ %
     │     ├─ " ─── O ─┤     ┌─ #
     └─ Ψ ─┤           └─ Ψ ─┼─ *
           │                 └─ #
           │
           │     ┌─ 2
           └─ & ─┴─ R
```
The test cases can be viewed [here](https://files.catbox.moe/zoje97.txt) and were generated using [this ruby script](https://files.catbox.moe/jyuigf.rb).