├── Pride_and_Prejudice.txt ├── README.md ├── example_repo ├── hw1 │ └── homework1.txt ├── hw2 │ └── prog.py ├── hw3 │ ├── markup.xml │ └── some_file.tsv └── hw4 │ └── prog.py ├── poem_generator.py └── sentence_generator.py /Pride_and_Prejudice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan1189/HSE-Programming/HEAD/Pride_and_Prejudice.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan1189/HSE-Programming/HEAD/README.md -------------------------------------------------------------------------------- /example_repo/hw1/homework1.txt: -------------------------------------------------------------------------------- 1 | I've worked very hard to make this. 2 | Please appreciate my skills. -------------------------------------------------------------------------------- /example_repo/hw2/prog.py: -------------------------------------------------------------------------------- 1 | print("Hello, World!") -------------------------------------------------------------------------------- /example_repo/hw3/markup.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_repo/hw3/some_file.tsv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_repo/hw4/prog.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poem_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan1189/HSE-Programming/HEAD/poem_generator.py -------------------------------------------------------------------------------- /sentence_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgan1189/HSE-Programming/HEAD/sentence_generator.py --------------------------------------------------------------------------------