Challenge: Primitive Calculator
Solve the Primitive Calculator Problem.
We'll cover the following...
Problem
Primitive Calculator Problem
Find the minimum number of operations needed to get a positive integer from using only three operations: add , multiply by , and multiply by .
Input: An integer .
Output: The minimum number of operations “,” “,” and “” needed to get from 1.
You are given a calculator that only performs the following three operations with an integer : add to , multiply by , or multiply by . Given a positive integer , your goal is to find the minimum number of operations needed to obtain starting from the number . Before solving the programming challenge below, test your intuition with our Primitive Calculator puzzle.
Let’s try a greedy strategy for solving this problem. If the current number is at most , multiply it by . If it is larger than , but at most , multiply it by . Otherwise add ...