/**
 * @file    iterative_strategy.cpp
 * @brief   Iterative strategy implementation.
 *
 * @authors James R. Daehn <jdaehn@missouristate.edu>
 *          // TODO: Add your name using the above format
 * @version 1.0.0
 * @date    2026-02-22
 *
 * @copyright Copyright (c) 2026
 *            James R. Daehn
 */

#include "iterative_strategy.h"

#include <stdexcept>

namespace csc232::hw03
{
    // TODO: Task 4 - Implement me
    auto iterative_strategy::compute( const int num ) const -> big_number { return 0; }
} // hw03
// csc232
