This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//! | |
//! # Rust competitive programming template | |
//! | |
//! Copyright (C) 2025 Kian Kasad (@kdkasad). | |
//! Testing via I/O dependency injection inspired by Eric Park (@ericswpark). | |
//! | |
//! You are free to use this template. If you redistribute it or a derivative work, the above | |
//! copyright notice and credits as well as this permission notice must be kept intact. | |
//! | |
//! Requires the following crates as dev-dependencies: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# Written by Kian Kasad <[email protected]>. | |
# See https://clang.llvm.org/docs/ClangFormatStyleOptions.html. | |
# Requires clang-format >=20.x.x. | |
Language: C | |
AlignAfterOpenBracket: Align | |
AlignArrayOfStructures: None | |
AlignConsecutiveAssignments: None |