Rust NYC!
Meetup
Source code of this websites
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)
Chat
(This takes a while to connect, be patient!)