|
@@ -1,6 +1,6 @@
|
|
-# Google Interview University - Uniwersytet przygotowujący do rozmowy kwalifikacyjnej w Google
|
|
|
|
|
|
+# Coding Interview University - Uniwersytet przygotowujący do rozmowy kwalifikacyjnej w Google
|
|
|
|
|
|
-Oryginał (angielski): https://github.com/jwasham/google-interview-university
|
|
|
|
|
|
+Oryginał (angielski): https://github.com/jwasham/coding-interview-university
|
|
|
|
|
|
>**Pierwotnie, to była mała lista rzeczy do nauki, ale urosła ona do dużych rozmiarów, jak to można dzisiaj zobaczyć.
|
|
>**Pierwotnie, to była mała lista rzeczy do nauki, ale urosła ona do dużych rozmiarów, jak to można dzisiaj zobaczyć.
|
|
Praca w Google była główną motywacją, stąd nazwa. [Nie dostałem się do Google'a](https://googleyasheck.com/i-didnt-get-hired-heres-why/),
|
|
Praca w Google była główną motywacją, stąd nazwa. [Nie dostałem się do Google'a](https://googleyasheck.com/i-didnt-get-hired-heres-why/),
|
|
@@ -12,19 +12,19 @@ wliczając w to gigantów: Amazon, Microsoft, Google i Facebook.**
|
|
Tłumaczenia:
|
|
Tłumaczenia:
|
|
- [中文版本](translations/README-cn.md)
|
|
- [中文版本](translations/README-cn.md)
|
|
- Niekompletne tłumaczenia:
|
|
- Niekompletne tłumaczenia:
|
|
- - [Español](https://github.com/jwasham/google-interview-university/issues/80)
|
|
|
|
- - [हिन्दी](https://github.com/jwasham/google-interview-university/issues/81)
|
|
|
|
- - [עברית](https://github.com/jwasham/google-interview-university/issues/82)
|
|
|
|
- - [Bahasa Indonesia](https://github.com/jwasham/google-interview-university/issues/101)
|
|
|
|
- - [Arabic](https://github.com/jwasham/google-interview-university/issues/98)
|
|
|
|
- - [Vietnamese](https://github.com/jwasham/google-interview-university/issues/92)
|
|
|
|
- - [Turkish](https://github.com/jwasham/google-interview-university/issues/90)
|
|
|
|
- - [French](https://github.com/jwasham/google-interview-university/issues/89)
|
|
|
|
- - [Russian](https://github.com/jwasham/google-interview-university/issues/87)
|
|
|
|
- - [Ukrainian](https://github.com/jwasham/google-interview-university/issues/106)
|
|
|
|
- - [Brazilian Portuguese](https://github.com/jwasham/google-interview-university/issues/113)
|
|
|
|
- - [Korean](https://github.com/jwasham/google-interview-university/issues/118)
|
|
|
|
- - [Polish](https://github.com/jwasham/google-interview-university/issues/122)
|
|
|
|
|
|
+ - [Español](https://github.com/jwasham/coding-interview-university/issues/80)
|
|
|
|
+ - [हिन्दी](https://github.com/jwasham/coding-interview-university/issues/81)
|
|
|
|
+ - [עברית](https://github.com/jwasham/coding-interview-university/issues/82)
|
|
|
|
+ - [Bahasa Indonesia](https://github.com/jwasham/coding-interview-university/issues/101)
|
|
|
|
+ - [Arabic](https://github.com/jwasham/coding-interview-university/issues/98)
|
|
|
|
+ - [Vietnamese](https://github.com/jwasham/coding-interview-university/issues/92)
|
|
|
|
+ - [Turkish](https://github.com/jwasham/coding-interview-university/issues/90)
|
|
|
|
+ - [French](https://github.com/jwasham/coding-interview-university/issues/89)
|
|
|
|
+ - [Russian](https://github.com/jwasham/coding-interview-university/issues/87)
|
|
|
|
+ - [Ukrainian](https://github.com/jwasham/coding-interview-university/issues/106)
|
|
|
|
+ - [Brazilian Portuguese](https://github.com/jwasham/coding-interview-university/issues/113)
|
|
|
|
+ - [Korean](https://github.com/jwasham/coding-interview-university/issues/118)
|
|
|
|
+ - [Polish](https://github.com/jwasham/coding-interview-university/issues/122)
|
|
|
|
|
|
## Co to jest?
|
|
## Co to jest?
|
|
Jest to mój wielomiesięczny program nauczania mający na celu awans z poziomu web developera (samouka, bez studiów informatycznych)
|
|
Jest to mój wielomiesięczny program nauczania mający na celu awans z poziomu web developera (samouka, bez studiów informatycznych)
|
|
@@ -192,7 +192,7 @@ Używam specjalniej, GitHubowej odmiany markdowna.
|
|
|
|
|
|
`git checkout -b progress`
|
|
`git checkout -b progress`
|
|
|
|
|
|
-`git remote add jwasham https://github.com/jwasham/google-interview-university`
|
|
|
|
|
|
+`git remote add jwasham https://github.com/jwasham/coding-interview-university`
|
|
|
|
|
|
`git fetch --all`
|
|
`git fetch --all`
|
|
|
|
|
|
@@ -655,7 +655,7 @@ Write code on a whiteboard or paper, not a computer. Test with some sample input
|
|
- binary search using recursion
|
|
- binary search using recursion
|
|
|
|
|
|
- ### Bitwise operations
|
|
- ### Bitwise operations
|
|
- - [ ] [Bits cheat sheet](https://github.com/jwasham/google-interview-university/blob/master/extras/cheat%20sheets/bits-cheat-cheet.pdf) - you should know many of the powers of 2 from (2^1 to 2^16 and 2^32)
|
|
|
|
|
|
+ - [ ] [Bits cheat sheet](https://github.com/jwasham/coding-interview-university/blob/master/extras/cheat%20sheets/bits-cheat-cheet.pdf) - you should know many of the powers of 2 from (2^1 to 2^16 and 2^32)
|
|
- [ ] Get a really good understanding of manipulating bits with: &, |, ^, ~, >>, <<
|
|
- [ ] Get a really good understanding of manipulating bits with: &, |, ^, ~, >>, <<
|
|
- [ ] [words](https://en.wikipedia.org/wiki/Word_(computer_architecture))
|
|
- [ ] [words](https://en.wikipedia.org/wiki/Word_(computer_architecture))
|
|
- [ ] Good intro:
|
|
- [ ] Good intro:
|
|
@@ -1233,7 +1233,7 @@ You'll get more graph practice in Skiena's book (see Books section below) and th
|
|
- For even more, see "Mining Massive Datasets" video series in the Video Series section.
|
|
- For even more, see "Mining Massive Datasets" video series in the Video Series section.
|
|
- [ ] Practicing the system design process: Here are some ideas to try working through on paper, each with some documentation on how it was handled in the real world:
|
|
- [ ] Practicing the system design process: Here are some ideas to try working through on paper, each with some documentation on how it was handled in the real world:
|
|
- review: [System Design from HiredInTech](http://www.hiredintech.com/system-design/)
|
|
- review: [System Design from HiredInTech](http://www.hiredintech.com/system-design/)
|
|
- - [cheat sheet](https://github.com/jwasham/google-interview-university/blob/master/extras/cheat%20sheets/system-design.pdf)
|
|
|
|
|
|
+ - [cheat sheet](https://github.com/jwasham/coding-interview-university/blob/master/extras/cheat%20sheets/system-design.pdf)
|
|
- flow:
|
|
- flow:
|
|
1. Understand the problem and scope:
|
|
1. Understand the problem and scope:
|
|
- define the use cases, with interviewer's help
|
|
- define the use cases, with interviewer's help
|