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
If we use o with an integer 0 we get the expected answer 1 - e.g. 0o: try it online.
But if we have a float 0.0 it times out instead - e.g. 0;o: try it online.
(When the float is a string it does work - e.g. 0;§o: try it online, or as input: try it online.
If we use
o
with an integer0
we get the expected answer1
- e.g.0o
: try it online.But if we have a float
0.0
it times out instead - e.g.0;o
: try it online.(When the float is a string it does work - e.g.
0;§o
: try it online, or as input: try it online.Found in this codegolf answer of mine.
The text was updated successfully, but these errors were encountered: