Rust NYC!
Meetup
Join the Discord
Follow RustEastCoast's (virtual events) calendar on Luma
Source code of this website
Resources
Exercises
Rust NYC curated exercises
File exercise!
Download this file: big.txt
- Calculate number of bytes in file
- Number of occurrences of the letter 'z' in file
- Number of occurrences of all letters (case insensitive) in file
How does performance compare to this Python script version?
file_ = open("big.txt")
count = 0
for line in file_:
for char in line:
count += 1
print(count)