├── .vscode └── settings.json ├── LICENSE ├── README.md ├── codes_with_script ├── README.md └── leetcode │ ├── 1055. Shortest Way to Form String │ └── nlgm_lowerbound.cpp │ ├── 1790. Check if One String Swap Can Make Strings Equal │ └── n_linear_scan.cpp │ └── 54. Spiral Matrix │ └── code.cpp ├── english_expressions └── README.md └── videos_with_script ├── README.md └── [youtube] example of google coding interveiw └── README.md /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingmonster-tv/english-for-coding-interview/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingmonster-tv/english-for-coding-interview/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingmonster-tv/english-for-coding-interview/HEAD/README.md -------------------------------------------------------------------------------- /codes_with_script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingmonster-tv/english-for-coding-interview/HEAD/codes_with_script/README.md -------------------------------------------------------------------------------- /codes_with_script/leetcode/1055. Shortest Way to Form String/nlgm_lowerbound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingmonster-tv/english-for-coding-interview/HEAD/codes_with_script/leetcode/1055. Shortest Way to Form String/nlgm_lowerbound.cpp -------------------------------------------------------------------------------- /codes_with_script/leetcode/1790. Check if One String Swap Can Make Strings Equal/n_linear_scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingmonster-tv/english-for-coding-interview/HEAD/codes_with_script/leetcode/1790. Check if One String Swap Can Make Strings Equal/n_linear_scan.cpp -------------------------------------------------------------------------------- /codes_with_script/leetcode/54. Spiral Matrix/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingmonster-tv/english-for-coding-interview/HEAD/codes_with_script/leetcode/54. Spiral Matrix/code.cpp -------------------------------------------------------------------------------- /english_expressions/README.md: -------------------------------------------------------------------------------- 1 | TODO -------------------------------------------------------------------------------- /videos_with_script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingmonster-tv/english-for-coding-interview/HEAD/videos_with_script/README.md -------------------------------------------------------------------------------- /videos_with_script/[youtube] example of google coding interveiw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingmonster-tv/english-for-coding-interview/HEAD/videos_with_script/[youtube] example of google coding interveiw/README.md --------------------------------------------------------------------------------