I have a question that was asked of me:
Form a given number using only 4s(using the least number of 4s) using only the following operations:
- Addition
- Subtraction
- Multiplication
- Division
- Power(^)
- Square root
- Factorial
- Greatest integer function
For example, 3 = 4-(4/4)
I'm a complete newbie to python. How do I approach this problem?