- Born in Seoul, South Korea
- Lives in San Diego, California
- Work Study Eligible
- CSE8A/8B
- CSE12 (in progress)
- CSE15L (in progress)
- Proficient in Java and Python.
- CSE8B Programming Assignments
- Gender, Number, and Case Tool for German
Language Proficiency
- German
- Korean
- English
Favorite Hobbies
- Listening to City Pop and Romantical Classic (Miki Matsubara and Johann Strauss II)
- Playing Apex Legends (My clips are posted on my Youtube channel - I am a Wattson main)
- Learning languages (I greatly enjoy learning German)
public static String test(){ return("Hello World!"); }
public static int factorials(int num){
int sum = 1;
for(int i = num; i > 0; i--){
sum *= i;
}
return sum;
}