fix: remove misc files

This commit is contained in:
Barrett Ruth 2024-07-03 10:41:26 -05:00
parent 71a959708d
commit aae407b645
3 changed files with 0 additions and 16 deletions

View file

@ -1 +0,0 @@
-std=c++20

View file

@ -1,5 +0,0 @@
This is an example text file.
This file contains several words, some of which are repeated.
For example, the word "this" appears multiple times in this file.
We can use a shell command to find the most frequent words.
Let's see how many times each word appears in this example text file.

10
map.cc
View file

@ -1,10 +0,0 @@
#include <fstream>
#include <iostream>
int main() {
std::ifstream ifs{"aggieland.txt"};
std::string read1;
int read2;
ifs >> read1 >> read2;
std::cout << read1 << read2;
}