Skip to content

Commit

Permalink
add exercism rust second challenge result
Browse files Browse the repository at this point in the history
  • Loading branch information
AlphonseMehounme authored Jan 2, 2025
1 parent 874c24e commit fa33aef
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Rust/Exercism/reverse_string.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
pub fn reverse(input: &str) -> String {
input.chars().rev().collect()
}





[package]
edition = "2021"
name = "reverse_string"
version = "1.2.0"

[features]
grapheme = []

0 comments on commit fa33aef

Please sign in to comment.