In this homework, you need to fix two files to pass the CI tests. We have a total of six tests, and your goal is to pass all the tests.
Read and complete the Git tutorial (https://githowto.com/) and modify the
gitpractice.txt file: change the word no to yes.
Modify the myinfo.csv file in such a way that satisfies the following
conditions:
-
The very first line should have the following string (no extra space chars allowed):
student_id,email,github_id -
The next (2nd) line should contain a comma-separated values for your student ID, email address, and GitHub ID. For example, suppose your student ID, email address, and GitHub ID are "20001234", "myemail@kaist.ac.kr", and "awesomeid", respectively. Then the 2nd line of the
myinfo.csvfile should be:20001234,myemail@kaist.ac.kr,awesomeid -
In conclusion, the
myinfo.csvfile should have two lines in total, and it should look as below:student_id,email,github_id 20001234,myemail@kaist.ac.kr,awesomeid