Post History
Jelly, 13 bytes 50R>×ɗị⁾-|Ø[j Try it online! Full program only--insofar as supporting the input requirements is concerned. Jelly implicitly Python evals the arguments to every program, so s...
#1: Initial revision
# [Jelly], 13 bytes
50R>×ɗị⁾-|Ø[j
[Try it online!][TIO-m38vep9q]
[Jelly]: https://github.com/DennisMitchell/jelly
[TIO-m38vep9q]: https://tio.run/##y0rNyan8/9/UIMju8PST0x/u7n7UuE@35vCM6Kz/h9s1I///N9Q30lEw0jcGEsYm@sYGBjoKpvqmBgA "Jelly – Try It Online"
Full program only--insofar as supporting the input requirements is concerned. Jelly implicitly Python evals the arguments to every program, so slash-separated input of two numbers becomes a float.
```
50R For every [1 .. 50],
> is it strictly greater than
×ɗ 50 times the ratio?
ị⁾-| Replace 0 with | and 1 with -,
Ø[j and surround with [].
```
