Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 785 Bytes

danieljmoon.md

File metadata and controls

38 lines (30 loc) · 785 Bytes

Daniel Moon - Mini Resume

Name: Daniel Moon
UT NetID: dmoon4
GitHub Username: danieljmoon
Major: Computer Science

Background

I was born in Knoxville and I am South Korean.

Interests

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.

Tools and Languages

  • Python
  • C/C++
  • RegEx
  • Linux Command Lines
  • Git/GitHub

Code Example

#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;
}