Name: Daniel Moon
UT NetID: dmoon4
GitHub Username: danieljmoon
Major: Computer Science
I was born in Knoxville and I am South Korean.
I love to play and watch tennis!
You can check out the ATP Tour Rankings, which lists the top tennis players in the world. I enjoy watching them compete.
- Python
- C/C++
- RegEx
- Linux Command Lines
- Git/GitHub
#include <iostream>
#include <set>
int main() {
std::set<int> orderedList;
orderedList.insert(1);
orderedList.insert(2);
orderedList.insert(3);
for(int n : orderedList) {
std::cout << n << std::endl;
}
return 0;
}