#pattern #input #generator #puzzle #generate #sudoku #solving

bin+lib pattern-generator

A Rust crate for solving Sudoku puzzles. It takes a Sudoku puzzle input and provides the solved grid.

3 releases

new 0.1.2 Jan 15, 2025
0.1.1 Jan 15, 2025
0.1.0 Jan 15, 2025

#268 in Games

Download history 264/week @ 2025-01-11

267 downloads per month

MIT license

16KB
350 lines

ASCII Art Generator

A simple Rust crate for generating ASCII art text patterns.

Installation

Add this to your Cargo.toml:

[dependencies]
ascii_art_generator = "0.1.0"

Usage

As a library

use ascii_art_generator::generate_pattern;

fn main() {
    let pattern = generate_pattern("HELLO - *");
    println!("{}", pattern);
}

As a binary

cargo install ascii_art_generator
ascii_art_generator

Then follow the prompts to enter your text and symbol.

Examples

Input: HELLO - * Output:

*   * ***** *    *      *****
*   * *     *    *      *   *
***** ***** *    *      *   *
*   * *     *    *      *   *
*   * ***** ***** ***** *****

License

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

No runtime deps