05AB1E icon indicating copy to clipboard operation
05AB1E copied to clipboard

A concise stack-based golfing language

Results 40 05AB1E issues
Sort by recently updated
recently updated
newest added

Almost all 05AB1E builtins that require integer arguments, will truncate decimal values when given instead, which is a great feature. Unfortunately, `₅` _**a(x)**_ (and `₆` **_a(n-x)_** as well) within the...

The `.v` builtin to converts valid Roman Number letters (e.g. `I` or `VC`) to integers, but only works on uppercase letters. I can understand that the reverse builtin `.X` always...

If we use `o` with an integer `0` we get the expected answer `1` - e.g. `0o`: [try it online](https://tio.run/##yy9OTMpM/f/fIP//fwA). But if we have a float `0.0` it times out...

There seems to be an issue in `ÅÏ` with certain list arguments. It seems to be an issue within the Elixir code itself instead of the list's data. Here a...

Some empty strings result in `1` when using the Python-style truthify builtin `Ā`. If we use an empty string directly (`õ`), it works fine and correctly results in `0`. But...

When we're sorting a nested list directly from input it works fine: [try it online](https://tio.run/##yy9OTMpM/f@/@v//6GiDWJ1oIyAG0YZgdiwA) But when we're sorting after we've just indexed, it seems to sort **based on the...

Just under `.u` in info.txt, I found a new "command:" `.U`. All it says is `push a with `. It seems to have been added to info.txt at the same...

Documentation

Similar to [this](https://github.com/DennisMitchell/jellylanguage/issues/91) issue opened in the Jelly repo and [this](https://github.com/barbuz/Husk/issues/14) issue opened in the Husk repo, I decided to run Lynn's method on 05AB1E answers (with a few modifications)....

I'm not sure how to describe it, but there are some weird and inconsistent things going on with the vertical mirror builtins: 1. `∊` with a list input: works as...

Although replacing inner-most items with `:` or `.:` works fine inside multi-dimensional lists, with `.;` it doesn't do anything and results in the multi-dimensional list unmodified. [Try it online to...

Bug