Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 1.19 KB

readme.md

File metadata and controls

42 lines (26 loc) · 1.19 KB

Hanoi Gif Renderer

This project is a CLI script that generates an ASCII GIF of the Tower of Hanoi solving process. It was created to explore using Rust's Iterator trait to implement recursive algorithms.

Features

  • Creates a cute ASCII GIF of the Tower of Hanoi solution
  • Supports any number of disks
  • Demonstrates the use of Rust's Iterator trait for recursive algorithms

Prerequisites

To run this project, you need to have the Rust toolchain installed on your system.

Installation and Setup

  1. Clone the repository:

    git clone https://github.com/yourusername/hanoi-gif-renderer.git
    cd hanoi-gif-renderer
    
  2. Build and run the project using Cargo:

    cargo run
    

Usage

[Add usage instructions here, such as how to specify the number of disks or any other command-line arguments]

Contributing

Feel free to open an issue if you want to reach out or contribute to the project.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

[You mentioned you'd add this later. When you're ready, you can include any acknowledgments or a brief explanation of the Tower of Hanoi algorithm here.]