You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 way to reproduce the issue, as well as a (+2 bytes) bug-fix to prevent it: ā¨Ć≠ÅÏžMм} to remove all vowels in a string, ignoring the leading/trailing characters. With terror as input, I'd expect trrr as output, but it's trror instead. Adding = as debug-lines shows the o is ignored instead of the trailing r: try it online.
As temp bug-fix I've added a no-op {À before the ÅÏ: try it online.
The --no-lazy flag doesn't seem to fix the issue unfortunately.
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 way to reproduce the issue, as well as a (+2 bytes) bug-fix to prevent it:
ā¨Ć≠ÅÏžMм}
to remove all vowels in a string, ignoring the leading/trailing characters. Withterror
as input, I'd expecttrrr
as output, but it'strror
instead. Adding=
as debug-lines shows theo
is ignored instead of the trailingr
: try it online.As temp bug-fix I've added a no-op
{À
before theÅÏ
: try it online.The
--no-lazy
flag doesn't seem to fix the issue unfortunately.Found in this codegolf answer of mine.
The text was updated successfully, but these errors were encountered: