Rename sheet folders to assure proper sorting

This commit is contained in:
Lukas Kalbertodt
2017-02-16 15:12:56 +01:00
parent aaf0332117
commit b3664c6ffd
74 changed files with 0 additions and 0 deletions

19
aufgaben/sheet02/sol3/count.rs Executable file
View File

@ -0,0 +1,19 @@
//! Aufgabe 2.3
fn main() {
let s = "The fat cat had a friend! ♥";
let count = count(s, 'a');
println!("{}", count);
}
fn count(haystack: &str, needle: char) -> u64 {
let mut count = 0;
for c in haystack.chars() {
if c == needle {
count += 1;
}
}
count
}