├── .gitignore ├── LICENSE.txt ├── README-he.md ├── README.md ├── extras └── cheat sheets │ ├── C Reference Card (ANSI) 2.2.pdf │ ├── Cpp_reference.pdf │ ├── STL Quick Reference 1.29.pdf │ ├── big-o-cheatsheet.pdf │ ├── bits-cheat-cheet.pdf │ ├── python-cheat-sheet-v1.pdf │ └── system-design.pdf ├── programming-language-resources.md └── translations ├── README-ar.md ├── README-cn.md ├── README-es.md ├── README-fr.md ├── README-hi.md ├── README-id.md ├── README-ko.md ├── README-pl.md ├── README-ptbr.md ├── README-ru.md ├── README-th.md ├── README-uk.md ├── README-vi.md └── how-to.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | personal-9894.md 3 | 4 | # Targets Windows & Unix temporary files 5 | ~$* 6 | *~ 7 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README-he.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/README-he.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/README.md -------------------------------------------------------------------------------- /extras/cheat sheets/C Reference Card (ANSI) 2.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/extras/cheat sheets/C Reference Card (ANSI) 2.2.pdf -------------------------------------------------------------------------------- /extras/cheat sheets/Cpp_reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/extras/cheat sheets/Cpp_reference.pdf -------------------------------------------------------------------------------- /extras/cheat sheets/STL Quick Reference 1.29.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/extras/cheat sheets/STL Quick Reference 1.29.pdf -------------------------------------------------------------------------------- /extras/cheat sheets/big-o-cheatsheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/extras/cheat sheets/big-o-cheatsheet.pdf -------------------------------------------------------------------------------- /extras/cheat sheets/bits-cheat-cheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/extras/cheat sheets/bits-cheat-cheet.pdf -------------------------------------------------------------------------------- /extras/cheat sheets/python-cheat-sheet-v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/extras/cheat sheets/python-cheat-sheet-v1.pdf -------------------------------------------------------------------------------- /extras/cheat sheets/system-design.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/extras/cheat sheets/system-design.pdf -------------------------------------------------------------------------------- /programming-language-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/programming-language-resources.md -------------------------------------------------------------------------------- /translations/README-ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/translations/README-ar.md -------------------------------------------------------------------------------- /translations/README-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/translations/README-cn.md -------------------------------------------------------------------------------- /translations/README-es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/translations/README-es.md -------------------------------------------------------------------------------- /translations/README-fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/translations/README-fr.md -------------------------------------------------------------------------------- /translations/README-hi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/translations/README-hi.md -------------------------------------------------------------------------------- /translations/README-id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/translations/README-id.md -------------------------------------------------------------------------------- /translations/README-ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/translations/README-ko.md -------------------------------------------------------------------------------- /translations/README-pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/translations/README-pl.md -------------------------------------------------------------------------------- /translations/README-ptbr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/translations/README-ptbr.md -------------------------------------------------------------------------------- /translations/README-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/translations/README-ru.md -------------------------------------------------------------------------------- /translations/README-th.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/translations/README-th.md -------------------------------------------------------------------------------- /translations/README-uk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/translations/README-uk.md -------------------------------------------------------------------------------- /translations/README-vi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/translations/README-vi.md -------------------------------------------------------------------------------- /translations/how-to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ilyushin/google-interview-university/HEAD/translations/how-to.md --------------------------------------------------------------------------------