/**
 * @file    naive_strategy.cpp
 * @brief   Naive 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. All rights reserved.
 */

#include "naive_strategy.h"
#include <stdexcept>

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