Skip to main content
edited body
Source Link

Python 3, 13 bytes

360 ..__rmod__

Explanation: num._rmod_(x) is equivalent to x%num (rmod is modulo from the right.).

Python 3, 13 bytes

360 .__rmod__

Explanation: num._rmod_(x) is equivalent to x%num (rmod is modulo from the right.).

Python 3, 13 bytes

360..__rmod__

Explanation: num._rmod_(x) is equivalent to x%num (rmod is modulo from the right.).

Source Link

Python 3, 13 bytes

360 .__rmod__

Explanation: num._rmod_(x) is equivalent to x%num (rmod is modulo from the right.).