Skip to main content
Use constructor instead of a method
Source Link
mypetlion
  • 812
  • 5
  • 12

Python 3, 2022 14 bytes

0 .__or__#__bus__int#__bus__. 0 

Try it online!Try it online!

Uses the int class's constructor and a built-in pseudo-private methodsmethod.

Python 3, 20 bytes

0 .__or__#__bus__. 0 

Try it online!

Uses the int class's built-in pseudo-private methods.

Python 3, 22 14 bytes

int#__bus__. 0 

Try it online!

Uses the int class's constructor and a built-in pseudo-private method.

Source Link
mypetlion
  • 812
  • 5
  • 12

Python 3, 20 bytes

0 .__or__#__bus__. 0 

Try it online!

Uses the int class's built-in pseudo-private methods.