├── .gitignore ├── 100urokov.md ├── CNAME ├── README.md ├── _config.yml ├── books.md ├── books ├── jiv_mat │ ├── index.md │ ├── jiv_mat.epub │ └── jiv_mat.pdf ├── mat_dlya_gum │ ├── README.md │ ├── cover.jpg │ ├── mat_dlya_gum.old.pdf │ └── mat_dlya_gum.pdf ├── vved_v_nast_mat │ └── vved_v_nast_mat.pdf └── zam_eko │ └── zam_eko.pdf ├── courses.md ├── donate.md ├── files ├── glavny.pdf └── Текст_решения_Алексею_Савватееву.pdf ├── mybooks.md ├── proj_links.md └── savvateev ├── README.md ├── disser.pdf └── savva.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /100urokov.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/100urokov.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | savvateev.xyz -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/_config.yml -------------------------------------------------------------------------------- /books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/books.md -------------------------------------------------------------------------------- /books/jiv_mat/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/books/jiv_mat/index.md -------------------------------------------------------------------------------- /books/jiv_mat/jiv_mat.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/books/jiv_mat/jiv_mat.epub -------------------------------------------------------------------------------- /books/jiv_mat/jiv_mat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/books/jiv_mat/jiv_mat.pdf -------------------------------------------------------------------------------- /books/mat_dlya_gum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/books/mat_dlya_gum/README.md -------------------------------------------------------------------------------- /books/mat_dlya_gum/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/books/mat_dlya_gum/cover.jpg -------------------------------------------------------------------------------- /books/mat_dlya_gum/mat_dlya_gum.old.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/books/mat_dlya_gum/mat_dlya_gum.old.pdf -------------------------------------------------------------------------------- /books/mat_dlya_gum/mat_dlya_gum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/books/mat_dlya_gum/mat_dlya_gum.pdf -------------------------------------------------------------------------------- /books/vved_v_nast_mat/vved_v_nast_mat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/books/vved_v_nast_mat/vved_v_nast_mat.pdf -------------------------------------------------------------------------------- /books/zam_eko/zam_eko.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/books/zam_eko/zam_eko.pdf -------------------------------------------------------------------------------- /courses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/courses.md -------------------------------------------------------------------------------- /donate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/donate.md -------------------------------------------------------------------------------- /files/glavny.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/files/glavny.pdf -------------------------------------------------------------------------------- /files/Текст_решения_Алексею_Савватееву.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/files/Текст_решения_Алексею_Савватееву.pdf -------------------------------------------------------------------------------- /mybooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/mybooks.md -------------------------------------------------------------------------------- /proj_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/proj_links.md -------------------------------------------------------------------------------- /savvateev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/savvateev/README.md -------------------------------------------------------------------------------- /savvateev/disser.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/savvateev/disser.pdf -------------------------------------------------------------------------------- /savvateev/savva.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathculthello/savva4/HEAD/savvateev/savva.jpg --------------------------------------------------------------------------------