It is winter time in Ottawa, so of course it is snowing. You decide to shovelthe walkway using the following algorithm: Algorithm ShovelSnow (n) :
if n = 1
Catch your breath for one minute;
return;
else
Shovel for n minutes;
SHOVELSNOW (n/3);
SHOVELSNOW (n/3);
Determine the number of minutes that you catch your breath as a function of m.