View etet.py
""" | |
Find an expression using the numbers 8, 8, 3, 3 each exactly once, without | |
replacement, combined with any number of the operators in +, -, *, / | |
such that the expression evaluates to 24. | |
""" | |
from fractions import Fraction | |
import os | |
import random | |
def add(a, b): |