├── .github ├── FUNDING.yml └── workflows │ └── links_checker.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── extras └── cheat sheets │ ├── C Reference Card (ANSI) 2.2.pdf │ ├── Coding Interview Python Language Essentials.pdf │ ├── Cpp_reference.pdf │ ├── Java Fundamentals Cheatsheet.pdf │ ├── STL Quick Reference 1.29.pdf │ ├── big-o-cheatsheet.pdf │ ├── bits-cheat-sheet.pdf │ ├── git-cheat-sheet-education.pdf │ ├── python-cheat-sheet-v1.pdf │ └── system-design.pdf ├── programming-language-resources.md └── translations ├── README-af.md ├── README-ar.md ├── README-bg.md ├── README-bn.md ├── README-cn.md ├── README-de.md ├── README-el.md ├── README-es.md ├── README-fa.md ├── README-fr.md ├── README-he.md ├── README-hi.md ├── README-id.md ├── README-it.md ├── README-ja.md ├── README-kh.md ├── README-ko.md ├── README-pl.md ├── README-ptbr.md ├── README-ru.md ├── README-th.md ├── README-tr.md ├── README-tw.md ├── README-uk.md ├── README-ur.md ├── README-uz.md ├── README-vi.md └── how-to.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: jwasham 2 | -------------------------------------------------------------------------------- /.github/workflows/links_checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/.github/workflows/links_checker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/README.md -------------------------------------------------------------------------------- /extras/cheat sheets/C Reference Card (ANSI) 2.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/extras/cheat sheets/C Reference Card (ANSI) 2.2.pdf -------------------------------------------------------------------------------- /extras/cheat sheets/Coding Interview Python Language Essentials.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/extras/cheat sheets/Coding Interview Python Language Essentials.pdf -------------------------------------------------------------------------------- /extras/cheat sheets/Cpp_reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/extras/cheat sheets/Cpp_reference.pdf -------------------------------------------------------------------------------- /extras/cheat sheets/Java Fundamentals Cheatsheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/extras/cheat sheets/Java Fundamentals Cheatsheet.pdf -------------------------------------------------------------------------------- /extras/cheat sheets/STL Quick Reference 1.29.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/extras/cheat sheets/STL Quick Reference 1.29.pdf -------------------------------------------------------------------------------- /extras/cheat sheets/big-o-cheatsheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/extras/cheat sheets/big-o-cheatsheet.pdf -------------------------------------------------------------------------------- /extras/cheat sheets/bits-cheat-sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/extras/cheat sheets/bits-cheat-sheet.pdf -------------------------------------------------------------------------------- /extras/cheat sheets/git-cheat-sheet-education.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/extras/cheat sheets/git-cheat-sheet-education.pdf -------------------------------------------------------------------------------- /extras/cheat sheets/python-cheat-sheet-v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/extras/cheat sheets/python-cheat-sheet-v1.pdf -------------------------------------------------------------------------------- /extras/cheat sheets/system-design.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/extras/cheat sheets/system-design.pdf -------------------------------------------------------------------------------- /programming-language-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/programming-language-resources.md -------------------------------------------------------------------------------- /translations/README-af.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-af.md -------------------------------------------------------------------------------- /translations/README-ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-ar.md -------------------------------------------------------------------------------- /translations/README-bg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-bg.md -------------------------------------------------------------------------------- /translations/README-bn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-bn.md -------------------------------------------------------------------------------- /translations/README-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-cn.md -------------------------------------------------------------------------------- /translations/README-de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-de.md -------------------------------------------------------------------------------- /translations/README-el.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-el.md -------------------------------------------------------------------------------- /translations/README-es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-es.md -------------------------------------------------------------------------------- /translations/README-fa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-fa.md -------------------------------------------------------------------------------- /translations/README-fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-fr.md -------------------------------------------------------------------------------- /translations/README-he.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-he.md -------------------------------------------------------------------------------- /translations/README-hi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-hi.md -------------------------------------------------------------------------------- /translations/README-id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-id.md -------------------------------------------------------------------------------- /translations/README-it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-it.md -------------------------------------------------------------------------------- /translations/README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-ja.md -------------------------------------------------------------------------------- /translations/README-kh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-kh.md -------------------------------------------------------------------------------- /translations/README-ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-ko.md -------------------------------------------------------------------------------- /translations/README-pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-pl.md -------------------------------------------------------------------------------- /translations/README-ptbr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-ptbr.md -------------------------------------------------------------------------------- /translations/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-ru.md -------------------------------------------------------------------------------- /translations/README-th.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-th.md -------------------------------------------------------------------------------- /translations/README-tr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-tr.md -------------------------------------------------------------------------------- /translations/README-tw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-tw.md -------------------------------------------------------------------------------- /translations/README-uk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-uk.md -------------------------------------------------------------------------------- /translations/README-ur.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-ur.md -------------------------------------------------------------------------------- /translations/README-uz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-uz.md -------------------------------------------------------------------------------- /translations/README-vi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/README-vi.md -------------------------------------------------------------------------------- /translations/how-to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tssovi/coding-interview-university/HEAD/translations/how-to.md --------------------------------------------------------------------------------