├── Exams ├── 2015-06-11-Variant-1 │ ├── 1. Powers │ │ ├── Description.pdf │ │ └── tests │ │ │ ├── test.000.001.in.txt │ │ │ ├── test.000.001.out.txt │ │ │ ├── test.000.002.in.txt │ │ │ ├── test.000.002.out.txt │ │ │ ├── test.000.003.in.txt │ │ │ ├── test.000.003.out.txt │ │ │ ├── test.001.in.txt │ │ │ ├── test.001.out.txt │ │ │ ├── test.002.in.txt │ │ │ ├── test.002.out.txt │ │ │ ├── test.003.in.txt │ │ │ ├── test.003.out.txt │ │ │ ├── test.004.in.txt │ │ │ ├── test.004.out.txt │ │ │ ├── test.005.in.txt │ │ │ ├── test.005.out.txt │ │ │ ├── test.006.in.txt │ │ │ ├── test.006.out.txt │ │ │ ├── test.007.in.txt │ │ │ ├── test.007.out.txt │ │ │ ├── test.008.in.txt │ │ │ ├── test.008.out.txt │ │ │ ├── test.009.in.txt │ │ │ ├── test.009.out.txt │ │ │ ├── test.010.in.txt │ │ │ ├── test.010.out.txt │ │ │ ├── test.011.in.txt │ │ │ ├── test.011.out.txt │ │ │ ├── test.012.in.txt │ │ │ ├── test.012.out.txt │ │ │ ├── test.013.in.txt │ │ │ ├── test.013.out.txt │ │ │ ├── test.014.in.txt │ │ │ ├── test.014.out.txt │ │ │ ├── test.015.in.txt │ │ │ ├── test.015.out.txt │ │ │ ├── test.016.in.txt │ │ │ ├── test.016.out.txt │ │ │ ├── test.017.in.txt │ │ │ ├── test.017.out.txt │ │ │ ├── test.018.in.txt │ │ │ ├── test.018.out.txt │ │ │ ├── test.019.in.txt │ │ │ ├── test.019.out.txt │ │ │ ├── test.020.in.txt │ │ │ └── test.020.out.txt │ ├── 2. Chess Moves RBQ │ │ ├── Description.pdf │ │ └── tests │ │ │ ├── test.000.001.in.txt │ │ │ ├── test.000.001.out.txt │ │ │ ├── test.000.002.in.txt │ │ │ ├── test.000.002.out.txt │ │ │ ├── test.001.in.txt │ │ │ ├── test.001.out.txt │ │ │ ├── test.002.in.txt │ │ │ ├── test.002.out.txt │ │ │ ├── test.003.in.txt │ │ │ ├── test.003.out.txt │ │ │ ├── test.004.in.txt │ │ │ ├── test.004.out.txt │ │ │ ├── test.005.in.txt │ │ │ ├── test.005.out.txt │ │ │ ├── test.006.in.txt │ │ │ ├── test.006.out.txt │ │ │ ├── test.007.in.txt │ │ │ ├── test.007.out.txt │ │ │ ├── test.008.in.txt │ │ │ ├── test.008.out.txt │ │ │ ├── test.009.in.txt │ │ │ ├── test.009.out.txt │ │ │ ├── test.010.in.txt │ │ │ └── test.010.out.txt │ └── 3. Cookie Super Styles │ │ ├── Description.pdf │ │ └── tests │ │ ├── test.000.001.in.txt │ │ ├── test.000.001.out.txt │ │ ├── test.001.in.txt │ │ ├── test.001.out.txt │ │ ├── test.002.in.txt │ │ ├── test.002.out.txt │ │ ├── test.003.in.txt │ │ ├── test.003.out.txt │ │ ├── test.004.in.txt │ │ ├── test.004.out.txt │ │ ├── test.005.in.txt │ │ ├── test.005.out.txt │ │ ├── test.006.in.txt │ │ ├── test.006.out.txt │ │ ├── test.007.in.txt │ │ ├── test.007.out.txt │ │ ├── test.008.in.txt │ │ ├── test.008.out.txt │ │ ├── test.009.in.txt │ │ ├── test.009.out.txt │ │ ├── test.010.in.txt │ │ ├── test.010.out.txt │ │ ├── test.011.in.txt │ │ ├── test.011.out.txt │ │ ├── test.012.in.txt │ │ ├── test.012.out.txt │ │ ├── test.013.in.txt │ │ ├── test.013.out.txt │ │ ├── test.014.in.txt │ │ ├── test.014.out.txt │ │ ├── test.015.in.txt │ │ ├── test.015.out.txt │ │ ├── test.016.in.txt │ │ ├── test.016.out.txt │ │ ├── test.017.in.txt │ │ ├── test.017.out.txt │ │ ├── test.018.in.txt │ │ ├── test.018.out.txt │ │ ├── test.019.in.txt │ │ ├── test.019.out.txt │ │ ├── test.020.in.txt │ │ └── test.020.out.txt ├── 2015-06-11-Variant-2 │ ├── .vscode │ │ └── launch.json │ ├── 1. Hills │ │ ├── README.md │ │ ├── imgs │ │ │ └── example.png │ │ ├── solution.js │ │ └── tests │ │ │ ├── test.000.001.in.txt │ │ │ ├── test.000.001.out.txt │ │ │ ├── test.000.002.in.txt │ │ │ ├── test.000.002.out.txt │ │ │ ├── test.000.003.in.txt │ │ │ ├── test.000.003.out.txt │ │ │ ├── test.001.in.txt │ │ │ ├── test.001.out.txt │ │ │ ├── test.002.in.txt │ │ │ ├── test.002.out.txt │ │ │ ├── test.003.in.txt │ │ │ ├── test.003.out.txt │ │ │ ├── test.004.in.txt │ │ │ ├── test.004.out.txt │ │ │ ├── test.005.in.txt │ │ │ ├── test.005.out.txt │ │ │ ├── test.006.in.txt │ │ │ ├── test.006.out.txt │ │ │ ├── test.007.in.txt │ │ │ ├── test.007.out.txt │ │ │ ├── test.008.in.txt │ │ │ ├── test.008.out.txt │ │ │ ├── test.009.in.txt │ │ │ ├── test.009.out.txt │ │ │ ├── test.010.in.txt │ │ │ ├── test.010.out.txt │ │ │ ├── test.011.in.txt │ │ │ ├── test.011.out.txt │ │ │ ├── test.012.in.txt │ │ │ ├── test.012.out.txt │ │ │ ├── test.013.in.txt │ │ │ ├── test.013.out.txt │ │ │ ├── test.014.in.txt │ │ │ ├── test.014.out.txt │ │ │ ├── test.015.in.txt │ │ │ ├── test.015.out.txt │ │ │ ├── test.016.in.txt │ │ │ ├── test.016.out.txt │ │ │ ├── test.017.in.txt │ │ │ ├── test.017.out.txt │ │ │ ├── test.018.in.txt │ │ │ ├── test.018.out.txt │ │ │ ├── test.019.in.txt │ │ │ ├── test.019.out.txt │ │ │ ├── test.020.in.txt │ │ │ └── test.020.out.txt │ ├── 2. Chess Moves KQ │ │ ├── Description.pdf │ │ ├── solution.js │ │ └── tests │ │ │ ├── test.000.001.in.txt │ │ │ ├── test.000.001.out.txt │ │ │ ├── test.000.002.in.txt │ │ │ ├── test.000.002.out.txt │ │ │ ├── test.001.in.txt │ │ │ ├── test.001.out.txt │ │ │ ├── test.002.in.txt │ │ │ ├── test.002.out.txt │ │ │ ├── test.003.in.txt │ │ │ ├── test.003.out.txt │ │ │ ├── test.004.in.txt │ │ │ ├── test.004.out.txt │ │ │ ├── test.005.in.txt │ │ │ ├── test.005.out.txt │ │ │ ├── test.006.in.txt │ │ │ ├── test.006.out.txt │ │ │ ├── test.007.in.txt │ │ │ ├── test.007.out.txt │ │ │ ├── test.008.in.txt │ │ │ ├── test.008.out.txt │ │ │ ├── test.009.in.txt │ │ │ ├── test.009.out.txt │ │ │ ├── test.010.in.txt │ │ │ └── test.010.out.txt │ ├── 3. CookieLESS and CookieHas │ │ ├── Description.pdf │ │ ├── solution.js │ │ └── tests │ │ │ ├── test.000.001.in.txt │ │ │ ├── test.000.001.out.txt │ │ │ ├── test.000.002.in.txt │ │ │ ├── test.000.002.out.txt │ │ │ ├── test.001.in.txt │ │ │ ├── test.001.out.txt │ │ │ ├── test.002.in.txt │ │ │ ├── test.002.out.txt │ │ │ ├── test.003.in.txt │ │ │ ├── test.003.out.txt │ │ │ ├── test.004.in.txt │ │ │ ├── test.004.out.txt │ │ │ ├── test.005.in.txt │ │ │ ├── test.005.out.txt │ │ │ ├── test.006.in.txt │ │ │ ├── test.006.out.txt │ │ │ ├── test.007.in.txt │ │ │ ├── test.007.out.txt │ │ │ ├── test.008.in.txt │ │ │ ├── test.008.out.txt │ │ │ ├── test.009.in.txt │ │ │ ├── test.009.out.txt │ │ │ ├── test.010.in.txt │ │ │ ├── test.010.out.txt │ │ │ ├── test.011.in.txt │ │ │ ├── test.011.out.txt │ │ │ ├── test.012.in.txt │ │ │ ├── test.012.out.txt │ │ │ ├── test.013.in.txt │ │ │ ├── test.013.out.txt │ │ │ ├── test.014.in.txt │ │ │ ├── test.014.out.txt │ │ │ ├── test.015.in.txt │ │ │ ├── test.015.out.txt │ │ │ ├── test.016.in.txt │ │ │ ├── test.016.out.txt │ │ │ ├── test.017.in.txt │ │ │ ├── test.017.out.txt │ │ │ ├── test.018.in.txt │ │ │ ├── test.018.out.txt │ │ │ ├── test.019.in.txt │ │ │ ├── test.019.out.txt │ │ │ ├── test.020.in.txt │ │ │ └── test.020.out.txt │ └── app.js ├── 2016-07-04-Variant-1 │ ├── 1. Valleys │ │ ├── README.md │ │ ├── imgs │ │ │ └── example.png │ │ ├── solution.js │ │ └── tests │ │ │ ├── test.000.001.in.txt │ │ │ ├── test.000.001.out.txt │ │ │ ├── test.000.002.in.txt │ │ │ ├── test.000.002.out.txt │ │ │ ├── test.001.in.txt │ │ │ ├── test.001.out.txt │ │ │ ├── test.002.in.txt │ │ │ ├── test.002.out.txt │ │ │ ├── test.003.in.txt │ │ │ ├── test.003.out.txt │ │ │ ├── test.004.in.txt │ │ │ ├── test.004.out.txt │ │ │ ├── test.005.in.txt │ │ │ ├── test.005.out.txt │ │ │ ├── test.006.in.txt │ │ │ ├── test.006.out.txt │ │ │ ├── test.007.in.txt │ │ │ ├── test.007.out.txt │ │ │ ├── test.008.in.txt │ │ │ ├── test.008.out.txt │ │ │ ├── test.009.in.txt │ │ │ ├── test.009.out.txt │ │ │ ├── test.010.in.txt │ │ │ ├── test.010.out.txt │ │ │ ├── test.011.in.txt │ │ │ ├── test.011.out.txt │ │ │ ├── test.012.in.txt │ │ │ ├── test.012.out.txt │ │ │ ├── test.013.in.txt │ │ │ ├── test.013.out.txt │ │ │ ├── test.014.in.txt │ │ │ ├── test.014.out.txt │ │ │ ├── test.015.in.txt │ │ │ ├── test.015.out.txt │ │ │ ├── test.016.in.txt │ │ │ ├── test.016.out.txt │ │ │ ├── test.017.in.txt │ │ │ ├── test.017.out.txt │ │ │ ├── test.018.in.txt │ │ │ ├── test.018.out.txt │ │ │ ├── test.019.in.txt │ │ │ ├── test.019.out.txt │ │ │ ├── test.020.in.txt │ │ │ └── test.020.out.txt │ ├── 2. Game of Tanks │ │ ├── README.md │ │ ├── imgs │ │ │ └── tanks.png │ │ ├── solution.js │ │ └── tests │ │ │ ├── test.000.001.in.txt │ │ │ ├── test.000.001.out.txt │ │ │ ├── test.000.002.in.txt │ │ │ ├── test.000.002.out.txt │ │ │ ├── test.000.003.in.txt │ │ │ ├── test.000.003.out.txt │ │ │ ├── test.000.in.txt │ │ │ ├── test.000.out.txt │ │ │ ├── test.001.in.txt │ │ │ ├── test.001.out.txt │ │ │ ├── test.002.in.txt │ │ │ ├── test.002.out.txt │ │ │ ├── test.003.in.txt │ │ │ ├── test.003.out.txt │ │ │ ├── test.004.in.txt │ │ │ ├── test.004.out.txt │ │ │ ├── test.005.in.txt │ │ │ ├── test.005.out.txt │ │ │ ├── test.006.in.txt │ │ │ ├── test.006.out.txt │ │ │ ├── test.007.in.txt │ │ │ ├── test.007.out.txt │ │ │ ├── test.008.in.txt │ │ │ ├── test.008.out.txt │ │ │ ├── test.009.in.txt │ │ │ ├── test.009.out.txt │ │ │ ├── test.010.in.txt │ │ │ └── test.010.out.txt │ └── 3. Min-avaScript │ │ ├── README.md │ │ ├── solution.js │ │ └── tests │ │ ├── test.000.001.in.txt │ │ ├── test.000.001.out.txt │ │ ├── test.000.002.in.txt │ │ ├── test.000.002.out.txt │ │ ├── test.001.in.txt │ │ ├── test.001.out.txt │ │ ├── test.002.in.txt │ │ ├── test.002.out.txt │ │ ├── test.003.in.txt │ │ ├── test.003.out.txt │ │ ├── test.004.in.txt │ │ ├── test.004.out.txt │ │ ├── test.005.in.txt │ │ ├── test.005.out.txt │ │ ├── test.006.in.txt │ │ ├── test.006.out.txt │ │ ├── test.007.in.txt │ │ ├── test.007.out.txt │ │ ├── test.008.in.txt │ │ ├── test.008.out.txt │ │ ├── test.009.in.txt │ │ ├── test.009.out.txt │ │ ├── test.010.in.txt │ │ ├── test.010.out.txt │ │ ├── test.011.in.txt │ │ ├── test.011.out.txt │ │ ├── test.012.in.txt │ │ ├── test.012.out.txt │ │ ├── test.013.in.txt │ │ ├── test.013.out.txt │ │ ├── test.014.in.txt │ │ ├── test.014.out.txt │ │ ├── test.015.in.txt │ │ ├── test.015.out.txt │ │ ├── test.016.in.txt │ │ ├── test.016.out.txt │ │ ├── test.017.in.txt │ │ ├── test.017.out.txt │ │ ├── test.018.in.txt │ │ ├── test.018.out.txt │ │ ├── test.019.in.txt │ │ ├── test.019.out.txt │ │ ├── test.020.in.txt │ │ ├── test.020.out.txt │ │ ├── test.021.in.txt │ │ ├── test.021.out.txt │ │ ├── test.022.in.txt │ │ ├── test.022.out.txt │ │ ├── test.023.in.txt │ │ ├── test.023.out.txt │ │ ├── test.024.in.txt │ │ ├── test.024.out.txt │ │ ├── test.025.in.txt │ │ └── test.025.out.txt ├── 2016-07-05-Variant-2 │ ├── 1. Pockets │ │ ├── README.md │ │ ├── imgs │ │ │ └── example.png │ │ ├── solution.js │ │ └── tests │ │ │ ├── test.000.001.in.txt │ │ │ ├── test.000.001.out.txt │ │ │ ├── test.000.002.in.txt │ │ │ ├── test.000.002.out.txt │ │ │ ├── test.000.003.in.txt │ │ │ ├── test.000.003.out.txt │ │ │ ├── test.001.in.txt │ │ │ ├── test.001.out.txt │ │ │ ├── test.002.in.txt │ │ │ ├── test.002.out.txt │ │ │ ├── test.003.in.txt │ │ │ ├── test.003.out.txt │ │ │ ├── test.004.in.txt │ │ │ ├── test.004.out.txt │ │ │ ├── test.005.in.txt │ │ │ ├── test.005.out.txt │ │ │ ├── test.006.in.txt │ │ │ ├── test.006.out.txt │ │ │ ├── test.007.in.txt │ │ │ ├── test.007.out.txt │ │ │ ├── test.008.in.txt │ │ │ ├── test.008.out.txt │ │ │ ├── test.009.in.txt │ │ │ ├── test.009.out.txt │ │ │ ├── test.010.in.txt │ │ │ └── test.010.out.txt │ ├── 2. Game of Trolls │ │ ├── README.md │ │ ├── solution.js │ │ └── tests │ │ │ ├── test.000.001.in.txt │ │ │ ├── test.000.001.out.txt │ │ │ ├── test.000.002.in.txt │ │ │ ├── test.000.002.out.txt │ │ │ ├── test.000.003.in.txt │ │ │ ├── test.000.003.out.txt │ │ │ ├── test.001.in.txt │ │ │ ├── test.001.out.txt │ │ │ ├── test.002.in.txt │ │ │ ├── test.002.out.txt │ │ │ ├── test.003.in.txt │ │ │ ├── test.003.out.txt │ │ │ ├── test.004.in.txt │ │ │ ├── test.004.out.txt │ │ │ ├── test.005.in.txt │ │ │ ├── test.005.out.txt │ │ │ ├── test.006.in.txt │ │ │ ├── test.006.out.txt │ │ │ ├── test.007.in.txt │ │ │ ├── test.007.out.txt │ │ │ ├── test.008.in.txt │ │ │ ├── test.008.out.txt │ │ │ ├── test.009.in.txt │ │ │ ├── test.009.out.txt │ │ │ ├── test.010.in.txt │ │ │ └── test.010.out.txt │ └── 3. Otp-adaScript │ │ ├── README.md │ │ ├── solution.js │ │ └── tests │ │ ├── test.000.001.in.txt │ │ ├── test.000.001.out.txt │ │ ├── test.000.002.in.txt │ │ ├── test.000.002.out.txt │ │ ├── test.001.in.txt │ │ ├── test.001.out.txt │ │ ├── test.002.in.txt │ │ ├── test.002.out.txt │ │ ├── test.003.in.txt │ │ ├── test.003.out.txt │ │ ├── test.004.in.txt │ │ ├── test.004.out.txt │ │ ├── test.005.in.txt │ │ ├── test.005.out.txt │ │ ├── test.006.in.txt │ │ ├── test.006.out.txt │ │ ├── test.007.in.txt │ │ ├── test.007.out.txt │ │ ├── test.008.in.txt │ │ ├── test.008.out.txt │ │ ├── test.009.in.txt │ │ ├── test.009.out.txt │ │ ├── test.010.in.txt │ │ ├── test.010.out.txt │ │ ├── test.011.in.txt │ │ ├── test.011.out.txt │ │ ├── test.012.in.txt │ │ ├── test.012.out.txt │ │ ├── test.013.in.txt │ │ ├── test.013.out.txt │ │ ├── test.014.in.txt │ │ ├── test.014.out.txt │ │ ├── test.015.in.txt │ │ ├── test.015.out.txt │ │ ├── test.016.in.txt │ │ ├── test.016.out.txt │ │ ├── test.017.in.txt │ │ ├── test.017.out.txt │ │ ├── test.018.in.txt │ │ ├── test.018.out.txt │ │ ├── test.019.in.txt │ │ ├── test.019.out.txt │ │ ├── test.020.in.txt │ │ ├── test.020.out.txt │ │ ├── test.021.in.txt │ │ ├── test.021.out.txt │ │ ├── test.022.in.txt │ │ ├── test.022.out.txt │ │ ├── test.023.in.txt │ │ ├── test.023.out.txt │ │ ├── test.024.in.txt │ │ ├── test.024.out.txt │ │ ├── test.025.in.txt │ │ └── test.025.out.txt └── 2017-01-18 │ ├── 1. Coki Skoki │ ├── README.md │ ├── imgs │ │ ├── example-1.png │ │ └── example-2.png │ ├── solution.js │ └── tests │ │ ├── test.000.001.in.txt │ │ ├── test.000.001.out.txt │ │ ├── test.000.002.in.txt │ │ ├── test.000.002.out.txt │ │ ├── test.001.in.txt │ │ ├── test.001.out.txt │ │ ├── test.002.in.txt │ │ ├── test.002.out.txt │ │ ├── test.003.in.txt │ │ ├── test.003.out.txt │ │ ├── test.004.in.txt │ │ ├── test.004.out.txt │ │ ├── test.005.in.txt │ │ ├── test.005.out.txt │ │ ├── test.006.in.txt │ │ ├── test.006.out.txt │ │ ├── test.007.in.txt │ │ ├── test.007.out.txt │ │ ├── test.008.in.txt │ │ ├── test.008.out.txt │ │ ├── test.009.in.txt │ │ ├── test.009.out.txt │ │ ├── test.010.in.txt │ │ ├── test.010.out.txt │ │ ├── test.011.in.txt │ │ ├── test.011.out.txt │ │ ├── test.012.in.txt │ │ ├── test.012.out.txt │ │ ├── test.013.in.txt │ │ ├── test.013.out.txt │ │ ├── test.014.in.txt │ │ ├── test.014.out.txt │ │ ├── test.015.in.txt │ │ ├── test.015.out.txt │ │ ├── test.016.in.txt │ │ ├── test.016.out.txt │ │ ├── test.017.in.txt │ │ ├── test.017.out.txt │ │ ├── test.018.in.txt │ │ ├── test.018.out.txt │ │ ├── test.019.in.txt │ │ ├── test.019.out.txt │ │ ├── test.020.in.txt │ │ └── test.020.out.txt │ ├── 2. Lost │ ├── README.md │ ├── imgs │ │ ├── start-1.png │ │ ├── start-2.png │ │ └── turshiya.jpg │ ├── solution.js │ └── tests │ │ ├── test.000.001.in.txt │ │ ├── test.000.001.out.txt │ │ ├── test.000.002.in.txt │ │ ├── test.000.002.out.txt │ │ ├── test.001.in.txt │ │ ├── test.001.out.txt │ │ ├── test.002.in.txt │ │ ├── test.002.out.txt │ │ ├── test.003.in.txt │ │ ├── test.003.out.txt │ │ ├── test.004.in.txt │ │ ├── test.004.out.txt │ │ ├── test.005.in.txt │ │ ├── test.005.out.txt │ │ ├── test.006.in.txt │ │ ├── test.006.out.txt │ │ ├── test.007.in.txt │ │ ├── test.007.out.txt │ │ ├── test.008.in.txt │ │ ├── test.008.out.txt │ │ ├── test.009.in.txt │ │ ├── test.009.out.txt │ │ ├── test.010.in.txt │ │ └── test.010.out.txt │ └── 3. Minify KONPOT │ ├── README.md │ ├── solution.js │ ├── solution2.js │ └── tests │ ├── test.000.001.in.txt │ ├── test.000.001.out.txt │ ├── test.000.002.in.txt │ ├── test.000.002.out.txt │ ├── test.000.003.in.txt │ ├── test.000.003.out.txt │ ├── test.001.in.txt │ ├── test.001.out.txt │ ├── test.002.in.txt │ ├── test.002.out.txt │ ├── test.003.in.txt │ ├── test.003.out.txt │ ├── test.004.in.txt │ ├── test.004.out.txt │ ├── test.005.in.txt │ ├── test.005.out.txt │ ├── test.006.in.txt │ ├── test.006.out.txt │ ├── test.007.in.txt │ ├── test.007.out.txt │ ├── test.008.in.txt │ ├── test.008.out.txt │ ├── test.009.in.txt │ ├── test.009.out.txt │ ├── test.010.in.txt │ ├── test.010.out.txt │ ├── test.011.in.txt │ ├── test.011.out.txt │ ├── test.012.in.txt │ ├── test.012.out.txt │ ├── test.013.in.txt │ ├── test.013.out.txt │ ├── test.014.in.txt │ ├── test.014.out.txt │ ├── test.015.in.txt │ ├── test.015.out.txt │ ├── test.016.in.txt │ ├── test.016.out.txt │ ├── test.017.in.txt │ ├── test.017.out.txt │ ├── test.018.in.txt │ ├── test.018.out.txt │ ├── test.019.in.txt │ ├── test.019.out.txt │ ├── test.020.in.txt │ └── test.020.out.txt ├── LICENSE ├── README.md ├── Topics ├── 00. Course-intro │ ├── README.md │ ├── imgs │ │ ├── logo-js.png │ │ ├── pic00.png │ │ ├── pic02.png │ │ ├── pic03.png │ │ ├── pic04.png │ │ ├── pic05.png │ │ ├── pic16.png │ │ ├── pic31.png │ │ ├── pic38.png │ │ ├── pic39.png │ │ ├── pic40.png │ │ └── pic41.png │ └── index.html ├── 01. Javascript-Development-Tools │ ├── README.md │ ├── imgs │ │ ├── debugging.jpg │ │ ├── js-tools.png │ │ ├── js-utils.png │ │ ├── pic01.png │ │ ├── pic02.png │ │ ├── pic03.png │ │ ├── pic04.png │ │ ├── pic05.png │ │ ├── pic06.png │ │ ├── pic07.png │ │ ├── pic08.png │ │ ├── pic09.png │ │ ├── pic10.png │ │ ├── pic11.png │ │ ├── pic12.png │ │ ├── pic13.png │ │ ├── pic14.png │ │ ├── sublime-logo.png │ │ ├── visual-studio-logo.png │ │ └── webstorm-logo.svg │ └── index.html ├── 02. Introduction to JavaScript Development │ ├── README.md │ ├── demos │ │ ├── 1. first-js.html │ │ ├── 2. small-example.html │ │ ├── 3. external-js-files.html │ │ ├── 4. popup-boxes.html │ │ ├── 5. built-in-objects.html │ │ ├── 6. timer.html │ │ ├── 7. debuging-js.html │ │ ├── images │ │ │ └── the-ninja.png │ │ └── scripts │ │ │ └── 3. external-js-files.js │ ├── imgs │ │ ├── pic00.png │ │ ├── pic01.png │ │ ├── pic02.png │ │ ├── pic03.png │ │ ├── pic04.png │ │ ├── pic05.png │ │ ├── pic06.png │ │ ├── pic07.png │ │ ├── pic08.png │ │ ├── pic09.png │ │ ├── pic10.png │ │ ├── pic11.png │ │ ├── pic12.png │ │ ├── pic13.png │ │ ├── pic14.png │ │ ├── pic15.png │ │ ├── pic16.png │ │ ├── pic17.png │ │ ├── pic18.png │ │ ├── pic19.png │ │ ├── pic20.png │ │ ├── pic21.png │ │ ├── pic22.png │ │ ├── pic23.png │ │ ├── pic24.png │ │ ├── pic25.png │ │ ├── pic26.png │ │ ├── pic27.png │ │ ├── pic28.png │ │ ├── pic29.png │ │ ├── pic30.png │ │ ├── pic31.png │ │ ├── pic32.png │ │ └── sg30.png │ └── index.html ├── 03. Data types and Variables │ ├── README.md │ ├── demos │ │ ├── 1. integer-type.js │ │ ├── 2. floating-point-type.js │ │ ├── 3. boolean-type.js │ │ ├── 4. string-type.js │ │ ├── 5. numbers-conversion.js │ │ ├── 6. parsing-numbers.js │ │ ├── 7. undefined-null-typeof.js │ │ └── 8. variables.js │ ├── homework │ │ ├── 01. JavaScript literals │ │ │ └── README.md │ │ ├── 02. Quoted text │ │ │ └── README.md │ │ ├── 03. Typeof variables │ │ │ └── README.md │ │ ├── 04. Typeof null │ │ │ └── README.md │ │ ├── 05. Parsing numbers │ │ │ └── README.md │ │ └── README.md │ ├── imgs │ │ ├── pic00.png │ │ ├── pic01.png │ │ ├── pic02.png │ │ ├── pic03.png │ │ ├── pic04.png │ │ ├── pic05.png │ │ ├── pic06.png │ │ ├── pic07.png │ │ ├── pic08.png │ │ ├── pic09.png │ │ ├── pic10.png │ │ ├── pic11.png │ │ ├── pic12.png │ │ ├── pic15.png │ │ ├── pic16.png │ │ ├── pic17.png │ │ ├── pic19.png │ │ ├── pic20.png │ │ ├── pic21.png │ │ ├── pic22.png │ │ ├── pic23.png │ │ ├── pic24.png │ │ ├── pic25.png │ │ ├── pic27.png │ │ ├── pic29.png │ │ ├── pic30.png │ │ ├── pic31.png │ │ ├── pic33.png │ │ ├── pic34.png │ │ ├── pic35.png │ │ ├── pic36.png │ │ ├── pic37.png │ │ ├── pic38.png │ │ ├── pic39.png │ │ ├── pic40.png │ │ ├── pic41.png │ │ ├── pic42.png │ │ ├── pic43.png │ │ ├── pic44.png │ │ └── pic45.png │ └── index.html ├── 04. Operators and Expressions │ ├── README.md │ ├── demos │ │ ├── 1. arithmetic.js │ │ ├── 2. logical.js │ │ ├── 3. bitwise.js │ │ ├── 4. comparison.js │ │ ├── 5. assignment.js │ │ └── 6. other-operators.js │ ├── homework │ │ ├── 01. Odd or Even │ │ │ ├── README.md │ │ │ └── Tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ ├── test.000.002.out.txt │ │ │ │ ├── test.000.003.in.txt │ │ │ │ ├── test.000.003.out.txt │ │ │ │ ├── test.000.004.in.txt │ │ │ │ ├── test.000.004.out.txt │ │ │ │ ├── test.000.005.in.txt │ │ │ │ └── test.000.005.out.txt │ │ ├── 02. Divisible by 7 and 5 │ │ │ ├── README.md │ │ │ └── Tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ ├── test.000.002.out.txt │ │ │ │ ├── test.000.003.in.txt │ │ │ │ ├── test.000.003.out.txt │ │ │ │ ├── test.000.004.in.txt │ │ │ │ ├── test.000.004.out.txt │ │ │ │ ├── test.000.005.in.txt │ │ │ │ ├── test.000.005.out.txt │ │ │ │ ├── test.000.006.in.txt │ │ │ │ └── test.000.006.out.txt │ │ ├── 03. Rectangles │ │ │ ├── README.md │ │ │ └── Tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ ├── test.000.002.out.txt │ │ │ │ ├── test.000.003.in.txt │ │ │ │ └── test.000.003.out.txt │ │ ├── 04. Third digit │ │ │ ├── README.md │ │ │ └── Tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ ├── test.000.002.out.txt │ │ │ │ ├── test.000.003.in.txt │ │ │ │ ├── test.000.003.out.txt │ │ │ │ ├── test.000.004.in.txt │ │ │ │ ├── test.000.004.out.txt │ │ │ │ ├── test.000.005.in.txt │ │ │ │ ├── test.000.005.out.txt │ │ │ │ ├── test.000.006.in.txt │ │ │ │ └── test.000.006.out.txt │ │ ├── 05. Third bit │ │ │ ├── README.md │ │ │ └── Tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ └── test.000.002.out.txt │ │ ├── 06. Point in Circle │ │ │ ├── README.md │ │ │ └── Tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ ├── test.000.002.out.txt │ │ │ │ ├── test.000.003.in.txt │ │ │ │ ├── test.000.003.out.txt │ │ │ │ ├── test.000.004.in.txt │ │ │ │ ├── test.000.004.out.txt │ │ │ │ ├── test.000.005.in.txt │ │ │ │ ├── test.000.005.out.txt │ │ │ │ ├── test.000.006.in.txt │ │ │ │ ├── test.000.006.out.txt │ │ │ │ ├── test.000.007.in.txt │ │ │ │ ├── test.000.007.out.txt │ │ │ │ ├── test.000.008.in.txt │ │ │ │ ├── test.000.008.out.txt │ │ │ │ ├── test.000.009.in.txt │ │ │ │ ├── test.000.009.out.txt │ │ │ │ ├── test.000.010.in.txt │ │ │ │ └── test.000.010.out.txt │ │ ├── 07. Prime Check │ │ │ ├── README.md │ │ │ └── Tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ ├── test.000.002.out.txt │ │ │ │ ├── test.000.003.in.txt │ │ │ │ ├── test.000.003.out.txt │ │ │ │ ├── test.000.004.in.txt │ │ │ │ ├── test.000.004.out.txt │ │ │ │ ├── test.000.005.in.txt │ │ │ │ └── test.000.005.out.txt │ │ ├── 08. Trapezoids │ │ │ ├── README.md │ │ │ └── Tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ ├── test.000.002.out.txt │ │ │ │ ├── test.000.003.in.txt │ │ │ │ ├── test.000.003.out.txt │ │ │ │ ├── test.000.004.in.txt │ │ │ │ ├── test.000.004.out.txt │ │ │ │ ├── test.000.005.in.txt │ │ │ │ └── test.000.005.out.txt │ │ ├── 09. Point in Circle and outside Rectangle │ │ │ ├── README.md │ │ │ └── Tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ ├── test.000.002.out.txt │ │ │ │ ├── test.000.003.in.txt │ │ │ │ ├── test.000.003.out.txt │ │ │ │ ├── test.000.004.in.txt │ │ │ │ └── test.000.004.out.txt │ │ └── README.md │ ├── imgs │ │ ├── logical-operators.png │ │ ├── pic01.png │ │ ├── pic02.png │ │ ├── pic03.png │ │ ├── pic04.png │ │ ├── pic05.png │ │ ├── pic06.png │ │ ├── pic07.png │ │ ├── pic08.png │ │ ├── pic09.png │ │ ├── pic10.png │ │ ├── pic11.jpg │ │ ├── pic13.png │ │ ├── pic20.png │ │ ├── pic21.png │ │ ├── pic22.png │ │ ├── pic24.png │ │ ├── pic26.png │ │ └── this-is-javascript.gif │ └── index.html ├── 05. Conditional Statements │ ├── README.md │ ├── demos │ │ ├── 1. if-statement.html │ │ ├── 2. if-else.html │ │ ├── 3. nested-if-else.html │ │ ├── 4. multiple-if-else.html │ │ ├── 5. switch-case.html │ │ ├── 6. switch-case-extended.html │ │ ├── scripts │ │ │ └── js-console.js │ │ └── styles │ │ │ ├── js-console.css │ │ │ ├── js-console.less │ │ │ └── js-console.min.css │ ├── homework │ │ ├── 01. Exchange if greater │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ ├── test.000.002.out.txt │ │ │ │ ├── test.000.003.in.txt │ │ │ │ └── test.000.003.out.txt │ │ ├── 02. Multiplication Sign │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ ├── test.000.002.out.txt │ │ │ │ ├── test.000.003.in.txt │ │ │ │ ├── test.000.003.out.txt │ │ │ │ ├── test.000.004.in.txt │ │ │ │ ├── test.000.004.out.txt │ │ │ │ ├── test.000.005.in.txt │ │ │ │ └── test.000.005.out.txt │ │ ├── 03. The biggest of Three │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ ├── test.000.002.out.txt │ │ │ │ ├── test.000.003.in.txt │ │ │ │ ├── test.000.003.out.txt │ │ │ │ ├── test.000.004.in.txt │ │ │ │ ├── test.000.004.out.txt │ │ │ │ ├── test.000.005.in.txt │ │ │ │ └── test.000.005.out.txt │ │ ├── 04. Sort 3 numbers │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ ├── test.000.002.out.txt │ │ │ │ ├── test.000.003.in.txt │ │ │ │ ├── test.000.003.out.txt │ │ │ │ ├── test.000.004.in.txt │ │ │ │ ├── test.000.004.out.txt │ │ │ │ ├── test.000.005.in.txt │ │ │ │ ├── test.000.005.out.txt │ │ │ │ ├── test.000.006.in.txt │ │ │ │ ├── test.000.006.out.txt │ │ │ │ ├── test.000.007.in.txt │ │ │ │ └── test.000.007.out.txt │ │ ├── 05. Digit as word │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ ├── test.000.002.out.txt │ │ │ │ ├── test.000.003.in.txt │ │ │ │ ├── test.000.003.out.txt │ │ │ │ ├── test.000.004.in.txt │ │ │ │ ├── test.000.004.out.txt │ │ │ │ ├── test.000.005.in.txt │ │ │ │ ├── test.000.005.out.txt │ │ │ │ ├── test.000.006.in.txt │ │ │ │ ├── test.000.006.out.txt │ │ │ │ ├── test.000.007.in.txt │ │ │ │ ├── test.000.007.out.txt │ │ │ │ ├── test.000.008.in.txt │ │ │ │ └── test.000.008.out.txt │ │ ├── 06. Quadratic equation │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ ├── test.000.002.out.txt │ │ │ │ ├── test.000.003.in.txt │ │ │ │ ├── test.000.003.out.txt │ │ │ │ ├── test.000.004.in.txt │ │ │ │ ├── test.000.004.out.txt │ │ │ │ ├── test.000.005.in.txt │ │ │ │ └── test.000.005.out.txt │ │ ├── 07. The biggest of five numbers │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ ├── test.000.002.out.txt │ │ │ │ ├── test.000.003.in.txt │ │ │ │ ├── test.000.003.out.txt │ │ │ │ ├── test.000.004.in.txt │ │ │ │ ├── test.000.004.out.txt │ │ │ │ ├── test.000.005.in.txt │ │ │ │ └── test.000.005.out.txt │ │ ├── 08. Number as words │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ ├── test.000.002.out.txt │ │ │ │ ├── test.000.003.in.txt │ │ │ │ ├── test.000.003.out.txt │ │ │ │ ├── test.000.004.in.txt │ │ │ │ ├── test.000.004.out.txt │ │ │ │ ├── test.000.005.in.txt │ │ │ │ ├── test.000.005.out.txt │ │ │ │ ├── test.000.006.in.txt │ │ │ │ ├── test.000.006.out.txt │ │ │ │ ├── test.000.007.in.txt │ │ │ │ ├── test.000.007.out.txt │ │ │ │ ├── test.000.008.in.txt │ │ │ │ ├── test.000.008.out.txt │ │ │ │ ├── test.000.009.in.txt │ │ │ │ ├── test.000.009.out.txt │ │ │ │ ├── test.000.010.in.txt │ │ │ │ ├── test.000.010.out.txt │ │ │ │ ├── test.000.011.in.txt │ │ │ │ ├── test.000.011.out.txt │ │ │ │ ├── test.000.012.in.txt │ │ │ │ ├── test.000.012.out.txt │ │ │ │ ├── test.000.013.in.txt │ │ │ │ └── test.000.013.out.txt │ │ └── README.md │ ├── imgs │ │ ├── pic00.png │ │ ├── pic01.png │ │ ├── pic02.png │ │ ├── pic03.png │ │ ├── pic04.png │ │ ├── pic05.png │ │ ├── pic06.png │ │ ├── pic07.png │ │ ├── pic08.png │ │ ├── pic09.png │ │ ├── pic10.png │ │ ├── pic12.png │ │ ├── pic13.png │ │ ├── pic15.png │ │ ├── pic24.png │ │ ├── pic25.png │ │ ├── pic26.png │ │ ├── pic27.png │ │ └── sg30.png │ └── index.html ├── 06. Loops │ ├── README.md │ ├── demos │ │ ├── 1. while-loop.html │ │ ├── 2. break-operator.html │ │ ├── 3. do-while-loop.html │ │ ├── 4. for-loop.html │ │ ├── 5. triangle-nested-loops.html │ │ ├── 6. primes-in-range-nested-loops.html │ │ ├── 7. for-in-loop.html │ │ ├── 8. for-of-loop.html │ │ ├── scripts │ │ │ └── js-console.js │ │ └── styles │ │ │ └── js-console.css │ ├── homework │ │ ├── 01. Numbers │ │ │ ├── README.md │ │ │ └── Tests │ │ │ │ ├── test.000.000.in.txt │ │ │ │ ├── test.000.000.out.txt │ │ │ │ ├── test.000.001.in.txt │ │ │ │ └── test.000.001.out.txt │ │ ├── 02. MMSA │ │ │ ├── README.md │ │ │ └── Tests │ │ │ │ ├── test.000.000.in.txt │ │ │ │ ├── test.000.000.out.txt │ │ │ │ ├── test.000.001.in.txt │ │ │ │ └── test.000.001.out.txt │ │ ├── 03. Matrix of numbers │ │ │ ├── README.md │ │ │ └── Tests │ │ │ │ ├── test.000.000.in.txt │ │ │ │ ├── test.000.000.out.txt │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ └── test.000.002.out.txt │ │ ├── 04. Lexicographically smallest │ │ │ └── README.md │ │ ├── 05. Hex to Decimal │ │ │ ├── README.md │ │ │ └── Tests │ │ │ │ ├── test.000.000.in.txt │ │ │ │ ├── test.000.000.out.txt │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ └── test.000.002.out.txt │ │ └── README.md │ ├── imgs │ │ ├── pic00.png │ │ ├── pic01.png │ │ ├── pic02.png │ │ ├── pic03.png │ │ ├── pic04.png │ │ ├── pic08.png │ │ ├── pic09.png │ │ ├── pic10.png │ │ ├── pic11.png │ │ ├── pic13.png │ │ ├── pic14.png │ │ ├── pic16.png │ │ ├── pic17.png │ │ ├── pic21.png │ │ ├── pic22.png │ │ ├── pic25.png │ │ ├── pic26.png │ │ ├── pic27.png │ │ └── pic28.png │ └── index.html ├── 07. Arrays │ ├── README.md │ ├── demos │ │ ├── 1. creating-arrays.html │ │ ├── 2. reverse-array.html │ │ ├── 3. processing-array.html │ │ ├── 4. dynamic-array.html │ │ ├── 5. sorting-array.html │ │ ├── 6. other-functions.html │ │ ├── 7. indexOf.html │ │ ├── scripts │ │ │ ├── index-of.js │ │ │ └── js-console.js │ │ └── styles │ │ │ ├── js-console.css │ │ │ ├── js-console.less │ │ │ └── js-console.min.css │ ├── homework │ │ ├── 01. Increase array members │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ └── test.000.001.out.txt │ │ ├── 02. Lexicographically comparison │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ └── test.000.002.out.txt │ │ ├── 03. Maximal sequence │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ └── test.000.001.out.txt │ │ ├── 04. Maximal increasing sequence │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ └── test.000.001.out.txt │ │ ├── 05. Selection sort │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ └── test.000.002.out.txt │ │ ├── 06. Most frequent number │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ └── test.000.001.out.txt │ │ ├── 07. Binary search │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ └── test.000.001.out.txt │ │ ├── 08. Subset with sum S │ │ │ └── README.md │ │ ├── 09. Permutations of set │ │ │ └── README.md │ │ ├── 10. Prime numbers │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ ├── test.000.002.out.txt │ │ │ │ ├── test.000.003.in.txt │ │ │ │ └── test.000.003.out.txt │ │ ├── 11. Find sum in array │ │ │ └── README.md │ │ └── README.md │ ├── imgs │ │ └── pic01.png │ └── index.html ├── 08. Functions │ ├── README.md │ ├── demos │ │ ├── 01. functions.html │ │ ├── 02. call-functions.html │ │ ├── 03. functions-parameters.html │ │ ├── 04. print-triangle.html │ │ ├── 05. arguments-object.html │ │ ├── 06. return-value.html │ │ ├── 07. sum-even-numbers.html │ │ ├── 08. function-scope.html │ │ ├── 09. wrong-function-overloading.html │ │ ├── 10. overloading-number-parameters.html │ │ ├── 11. overloading-parameters-type.html │ │ ├── 12. default-values.html │ │ ├── scripts │ │ │ └── js-console.js │ │ └── styles │ │ │ ├── js-console.css │ │ │ └── js-console.less │ ├── homework │ │ ├── 01. Say Hello │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ └── test.000.001.out.txt │ │ ├── 02. Get largest number │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ └── test.000.002.out.txt │ │ ├── 03. English digit │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.in.txt │ │ │ │ └── test.000.out.txt │ │ ├── 04. Appearance count │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ └── test.000.001.out.txt │ │ ├── 05. Larger than neighbours │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ └── test.000.001.out.txt │ │ ├── 06. First larger than neighbours │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ └── test.000.001.out.txt │ │ ├── 07. Sorting array │ │ │ ├── README.md │ │ │ └── tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ └── test.000.002.out.txt │ │ └── README.md │ ├── imgs │ │ ├── pic00.png │ │ ├── pic01.png │ │ ├── pic02.png │ │ ├── pic03.png │ │ ├── pic04.png │ │ ├── pic05.png │ │ ├── pic06.png │ │ ├── pic07.png │ │ ├── pic08.png │ │ ├── pic09.png │ │ ├── pic10.png │ │ ├── pic11.png │ │ ├── pic12.png │ │ ├── pic13.png │ │ ├── pic14.png │ │ ├── pic15.png │ │ ├── pic16.png │ │ ├── pic17.png │ │ ├── pic18.png │ │ ├── pic19.png │ │ ├── pic20.png │ │ ├── pic21.png │ │ ├── pic22.png │ │ ├── pic23.png │ │ ├── pic24.png │ │ ├── pic25.png │ │ ├── pic26.png │ │ ├── pic27.png │ │ ├── pic28.png │ │ ├── pic29.png │ │ ├── pic30.png │ │ ├── pic31.png │ │ ├── pic32.png │ │ ├── pic33.png │ │ ├── pic34.png │ │ ├── pic35.png │ │ ├── pic36.png │ │ └── pic37.png │ └── index.html ├── 09. Using Objects │ ├── README.md │ ├── demos │ │ ├── 1. objects-overview.html │ │ ├── 2. reference-primitive-types.html │ │ ├── 3. primitive-types.html │ │ ├── 4. reference-types.html │ │ ├── 5. json-objects.html │ │ ├── 6. json-build-function.html │ │ ├── 7. object-properties.html │ │ ├── 8. associative-arrays.html │ │ ├── scripts │ │ │ └── js-console.js │ │ └── styles │ │ │ ├── js-console.css │ │ │ └── js-console.less │ ├── homework │ │ ├── 01. Planar coordinates │ │ │ └── README.md │ │ ├── 02. Remove elements │ │ │ └── README.md │ │ ├── 03. Deep copy │ │ │ └── README.md │ │ ├── 04. Has property │ │ │ └── README.md │ │ ├── 05. Youngest person │ │ │ └── README.md │ │ ├── 06. Group people │ │ │ └── README.md │ │ └── README.md │ ├── imgs │ │ ├── example.png │ │ ├── pass-by-value-vs-pass-by-reference.gif │ │ ├── pic01.png │ │ ├── pic02.png │ │ ├── pic03.png │ │ ├── pic04.png │ │ ├── pic05.png │ │ ├── pic06.png │ │ ├── pic07.png │ │ └── types.png │ └── index.html ├── 10. Methods on Arrays and Objects │ ├── README.md │ ├── demos │ │ ├── 01. Array.every.html │ │ ├── 02. Array.some.html │ │ ├── 03. Array.filter.html │ │ ├── 04. Array.reduce.html │ │ ├── 05. Array.map.html │ │ ├── 06. Array.forEach.html │ │ ├── 07. Array.find.html │ │ ├── 08. Array.findIndex.html │ │ ├── 09. Array.sort.html │ │ ├── 10. Array.fill.html │ │ ├── 11. Chaining Array methods.html │ │ ├── array-methods-playground │ │ │ ├── README.md │ │ │ ├── data │ │ │ │ ├── d │ │ │ │ ├── data-scripts │ │ │ │ │ ├── generation-script.js │ │ │ │ │ └── students.js │ │ │ │ └── files │ │ │ │ │ └── students.json │ │ │ ├── queries.js │ │ │ ├── solutions.js │ │ │ ├── student-exporter.js │ │ │ ├── students.html │ │ │ └── templates │ │ │ │ ├── array-template.html │ │ │ │ └── students-template.html │ │ ├── live-demo-6-jan-2017 │ │ │ ├── conditions.js │ │ │ ├── forEach.js │ │ │ ├── searching.js │ │ │ └── transformations.js │ │ ├── scripts │ │ │ ├── js-console.js │ │ │ └── string-extensions.js │ │ └── styles │ │ │ ├── js-console.css │ │ │ └── js-console.less │ ├── homework │ │ ├── 01. Make person │ │ │ └── README.md │ │ ├── 02. People of age │ │ │ └── README.md │ │ ├── 03. Underage people │ │ │ └── README.md │ │ ├── 04. Average age of females │ │ │ └── README.md │ │ ├── 05. Youngest person │ │ │ └── README.md │ │ ├── 06. Group people │ │ │ └── README.md │ │ └── README.md │ ├── imgs │ │ ├── pic00.png │ │ ├── pic01.png │ │ ├── pic02.png │ │ ├── pic03.png │ │ ├── pic04.png │ │ ├── pic05.png │ │ ├── pic06.png │ │ └── pic07.png │ └── index.html ├── 11. Strings │ ├── README.md │ ├── demos │ │ ├── 1. string-wrapper.html │ │ ├── 2. string-methods.html │ │ ├── 3. string-concatenation.html │ │ ├── 4. string-escape.html │ │ ├── 5. trim-extensions.html │ │ ├── 6. padding-extensions.html │ │ ├── scripts │ │ │ ├── js-console.js │ │ │ └── string-extensions.js │ │ └── styles │ │ │ ├── js-console.css │ │ │ └── js-console.less │ ├── homework │ │ ├── 01. Reverse string │ │ │ └── README.md │ │ ├── 02. Correct brackets │ │ │ └── README.md │ │ ├── 03. Sub-string in text │ │ │ └── README.md │ │ ├── 04. Parse tags │ │ │ └── README.md │ │ ├── 05. nbsp │ │ │ └── README.md │ │ ├── 06. Extract text from HTML │ │ │ └── README.md │ │ ├── 07. Parse URL │ │ │ └── README.md │ │ ├── 08. Replace tags │ │ │ └── README.md │ │ ├── 09. Extract e-mails │ │ │ └── README.md │ │ ├── 10. Find palindromes │ │ │ └── README.md │ │ ├── 11. String format │ │ │ └── README.md │ │ ├── 12. Generate list │ │ │ └── README.md │ │ └── README.md │ ├── imgs │ │ ├── pic00.png │ │ ├── pic01.png │ │ ├── pic02.png │ │ ├── pic03.png │ │ ├── pic04.png │ │ ├── pic05.png │ │ └── pic06.png │ └── index.html ├── 12. Regular Expressions │ ├── README.md │ ├── homework │ │ ├── 01. Format with placeholders │ │ │ ├── README.md │ │ │ └── Tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ └── test.000.002.out.txt │ │ ├── 02. HTML binding │ │ │ ├── README.md │ │ │ └── Tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ └── test.000.002.out.txt │ │ └── README.md │ ├── imgs │ │ ├── pic00.png │ │ ├── pic01.png │ │ ├── pic02.png │ │ ├── pic03.png │ │ ├── pic04.png │ │ ├── regex.jpg │ │ └── toc.png │ └── index.html └── 13. Exam preparation │ ├── 2014 │ ├── May-19 │ │ ├── Problem 1 │ │ │ ├── Vehicles-solution.cs │ │ │ ├── Vehicles-solution.js │ │ │ ├── Vehicles-tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ ├── test.000.002.out.txt │ │ │ │ ├── test.000.003.in.txt │ │ │ │ ├── test.000.003.out.txt │ │ │ │ ├── test.001.in.txt │ │ │ │ ├── test.001.out.txt │ │ │ │ ├── test.002.in.txt │ │ │ │ ├── test.002.out.txt │ │ │ │ ├── test.003.in.txt │ │ │ │ ├── test.003.out.txt │ │ │ │ ├── test.004.in.txt │ │ │ │ ├── test.004.out.txt │ │ │ │ ├── test.005.in.txt │ │ │ │ ├── test.005.out.txt │ │ │ │ ├── test.006.in.txt │ │ │ │ ├── test.006.out.txt │ │ │ │ ├── test.007.in.txt │ │ │ │ ├── test.007.out.txt │ │ │ │ ├── test.008.in.txt │ │ │ │ ├── test.008.out.txt │ │ │ │ ├── test.009.in.txt │ │ │ │ ├── test.009.out.txt │ │ │ │ ├── test.010.in.txt │ │ │ │ └── test.010.out.txt │ │ │ ├── Vehicles.docx │ │ │ └── Vehicles.pdf │ │ ├── Problem 2 │ │ │ ├── Paths-solution.js │ │ │ ├── Paths-tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.000.002.in.txt │ │ │ │ ├── test.000.002.out.txt │ │ │ │ ├── test.001.in.txt │ │ │ │ ├── test.001.out.txt │ │ │ │ ├── test.002.in.txt │ │ │ │ ├── test.002.out.txt │ │ │ │ ├── test.003.in.txt │ │ │ │ ├── test.003.out.txt │ │ │ │ ├── test.004.in.txt │ │ │ │ ├── test.004.out.txt │ │ │ │ ├── test.005.in.txt │ │ │ │ ├── test.005.out.txt │ │ │ │ ├── test.006.in.txt │ │ │ │ ├── test.006.out.txt │ │ │ │ ├── test.007.in.txt │ │ │ │ ├── test.007.out.txt │ │ │ │ ├── test.008.in.txt │ │ │ │ ├── test.008.out.txt │ │ │ │ ├── test.009.in.txt │ │ │ │ ├── test.009.out.txt │ │ │ │ ├── test.010.in.txt │ │ │ │ ├── test.010.out.txt │ │ │ │ ├── test.011.in.txt │ │ │ │ ├── test.011.out.txt │ │ │ │ ├── test.012.in.txt │ │ │ │ ├── test.012.out.txt │ │ │ │ ├── test.013.in.txt │ │ │ │ ├── test.013.out.txt │ │ │ │ ├── test.014.in.txt │ │ │ │ ├── test.014.out.txt │ │ │ │ ├── test.015.in.txt │ │ │ │ ├── test.015.out.txt │ │ │ │ ├── test.016.in.txt │ │ │ │ ├── test.016.out.txt │ │ │ │ ├── test.017.in.txt │ │ │ │ ├── test.017.out.txt │ │ │ │ ├── test.018.in.txt │ │ │ │ ├── test.018.out.txt │ │ │ │ ├── test.019.in.txt │ │ │ │ ├── test.019.out.txt │ │ │ │ ├── test.020.in.txt │ │ │ │ └── test.020.out.txt │ │ │ ├── Paths.docx │ │ │ └── Paths.pdf │ │ ├── Problem 3 │ │ │ ├── Shaver-Parser-solution.js │ │ │ ├── Shaver-Parser-tests │ │ │ │ ├── test.000.001.in.txt │ │ │ │ ├── test.000.001.out.txt │ │ │ │ ├── test.001.in.txt │ │ │ │ ├── test.001.out.txt │ │ │ │ ├── test.002.in.txt │ │ │ │ ├── test.002.out.txt │ │ │ │ ├── test.003.in.txt │ │ │ │ ├── test.003.out.txt │ │ │ │ ├── test.004.in.txt │ │ │ │ ├── test.004.out.txt │ │ │ │ ├── test.005.in.txt │ │ │ │ ├── test.005.out.txt │ │ │ │ ├── test.006.in.txt │ │ │ │ ├── test.006.out.txt │ │ │ │ ├── test.007.in.txt │ │ │ │ ├── test.007.out.txt │ │ │ │ ├── test.008.in.txt │ │ │ │ ├── test.008.out.txt │ │ │ │ ├── test.009.in.txt │ │ │ │ ├── test.009.out.txt │ │ │ │ ├── test.010.in.txt │ │ │ │ └── test.010.out.txt │ │ │ ├── Shaver-Parser.docx │ │ │ └── Shaver-Parser.pdf │ │ └── Problem 4 (Bonus) │ │ │ ├── Coord-System-solution.cs │ │ │ ├── Coord-System-solution.js │ │ │ ├── Coord-System-tests │ │ │ ├── test.000.001.in.txt │ │ │ ├── test.000.001.out.txt │ │ │ ├── test.000.002.in.txt │ │ │ ├── test.000.002.out.txt │ │ │ ├── test.000.003.in.txt │ │ │ ├── test.000.003.out.txt │ │ │ ├── test.000.004.in.txt │ │ │ ├── test.000.004.out.txt │ │ │ ├── test.001.in.txt │ │ │ ├── test.001.out.txt │ │ │ ├── test.002.in.txt │ │ │ ├── test.002.out.txt │ │ │ ├── test.003.in.txt │ │ │ ├── test.003.out.txt │ │ │ ├── test.004.in.txt │ │ │ └── test.004.out.txt │ │ │ ├── Coord-System.docx │ │ │ ├── Coord-System.pdf │ │ │ └── Coord-System.png │ └── May-20 │ │ ├── Problem 1 │ │ ├── Cakes-solution.cs │ │ ├── Cakes-solution.js │ │ ├── Cakes-tests │ │ │ ├── test.000.001.in.txt │ │ │ ├── test.000.001.out.txt │ │ │ ├── test.000.002.in.txt │ │ │ ├── test.000.002.out.txt │ │ │ ├── test.000.003.in.txt │ │ │ ├── test.000.003.out.txt │ │ │ ├── test.001.in.txt │ │ │ ├── test.001.out.txt │ │ │ ├── test.002.in.txt │ │ │ ├── test.002.out.txt │ │ │ ├── test.003.in.txt │ │ │ ├── test.003.out.txt │ │ │ ├── test.004.in.txt │ │ │ ├── test.004.out.txt │ │ │ ├── test.005.in.txt │ │ │ ├── test.005.out.txt │ │ │ ├── test.006.in.txt │ │ │ ├── test.006.out.txt │ │ │ ├── test.007.in.txt │ │ │ ├── test.007.out.txt │ │ │ ├── test.008.in.txt │ │ │ ├── test.008.out.txt │ │ │ ├── test.009.in.txt │ │ │ ├── test.009.out.txt │ │ │ ├── test.010.in.txt │ │ │ └── test.010.out.txt │ │ ├── Cakes.docx │ │ └── Cakes.pdf │ │ ├── Problem 2 │ │ ├── Horsy-solution.js │ │ ├── Horsy-tests │ │ │ ├── test.000.001.in.txt │ │ │ ├── test.000.001.out.txt │ │ │ ├── test.000.002.in.txt │ │ │ ├── test.000.002.out.txt │ │ │ ├── test.001.in.txt │ │ │ ├── test.001.out.txt │ │ │ ├── test.002.in.txt │ │ │ ├── test.002.out.txt │ │ │ ├── test.003.in.txt │ │ │ ├── test.003.out.txt │ │ │ ├── test.004.in.txt │ │ │ ├── test.004.out.txt │ │ │ ├── test.005.in.txt │ │ │ ├── test.005.out.txt │ │ │ ├── test.006.in.txt │ │ │ ├── test.006.out.txt │ │ │ ├── test.007.in.txt │ │ │ ├── test.007.out.txt │ │ │ ├── test.008.in.txt │ │ │ ├── test.008.out.txt │ │ │ ├── test.009.in.txt │ │ │ ├── test.009.out.txt │ │ │ ├── test.010.in.txt │ │ │ ├── test.010.out.txt │ │ │ ├── test.011.in.txt │ │ │ ├── test.011.out.txt │ │ │ ├── test.012.in.txt │ │ │ ├── test.012.out.txt │ │ │ ├── test.013.in.txt │ │ │ ├── test.013.out.txt │ │ │ ├── test.014.in.txt │ │ │ ├── test.014.out.txt │ │ │ ├── test.015.in.txt │ │ │ ├── test.015.out.txt │ │ │ ├── test.016.in.txt │ │ │ ├── test.016.out.txt │ │ │ ├── test.017.in.txt │ │ │ ├── test.017.out.txt │ │ │ ├── test.018.in.txt │ │ │ ├── test.018.out.txt │ │ │ ├── test.019.in.txt │ │ │ ├── test.019.out.txt │ │ │ ├── test.020.in.txt │ │ │ └── test.020.out.txt │ │ ├── Horsy.docx │ │ └── Horsy.pdf │ │ ├── Problem 3 │ │ ├── NikolAngularJS-solution.js │ │ ├── NikolAngularJS-tests │ │ │ ├── test.000.001.in.txt │ │ │ ├── test.000.001.out.txt │ │ │ ├── test.001.in.txt │ │ │ ├── test.001.out.txt │ │ │ ├── test.002.in.txt │ │ │ ├── test.002.out.txt │ │ │ ├── test.003.in.txt │ │ │ ├── test.003.out.txt │ │ │ ├── test.004.in.txt │ │ │ ├── test.004.out.txt │ │ │ ├── test.005.in.txt │ │ │ ├── test.005.out.txt │ │ │ ├── test.006.in.txt │ │ │ ├── test.006.out.txt │ │ │ ├── test.007.in.txt │ │ │ ├── test.007.out.txt │ │ │ ├── test.008.in.txt │ │ │ ├── test.008.out.txt │ │ │ ├── test.009.in.txt │ │ │ ├── test.009.out.txt │ │ │ ├── test.010.in.txt │ │ │ └── test.010.out.txt │ │ ├── NikolAngularJS.docx │ │ └── NikolAngularJS.pdf │ │ └── Problem 4 (Bonus) │ │ ├── Catalan-Numbers-solution.js │ │ ├── Catalan-Numbers-test-generator.js │ │ ├── Catalan-Numbers-tests │ │ ├── test.000.001.in.txt │ │ ├── test.000.001.out.txt │ │ ├── test.001.in.txt │ │ ├── test.001.out.txt │ │ ├── test.002.in.txt │ │ ├── test.002.out.txt │ │ ├── test.003.in.txt │ │ ├── test.003.out.txt │ │ ├── test.004.in.txt │ │ ├── test.004.out.txt │ │ ├── test.005.in.txt │ │ ├── test.005.out.txt │ │ ├── test.006.in.txt │ │ ├── test.006.out.txt │ │ ├── test.007.in.txt │ │ ├── test.007.out.txt │ │ ├── test.008.in.txt │ │ ├── test.008.out.txt │ │ ├── test.009.in.txt │ │ ├── test.009.out.txt │ │ ├── test.010.in.txt │ │ └── test.010.out.txt │ │ ├── Catalan-Numbers.docx │ │ └── Catalan-Numbers.pdf │ └── 2016 │ ├── June-30 │ ├── chess.js │ ├── cookie.js │ └── powers.js │ └── Workshop │ ├── Greedy Dwarf │ ├── 1. Greedy Dwarf_Description.doc │ └── greedy-dwarf.js │ └── Magic Words │ ├── 2. Magic Words_Description.doc │ └── magic-words.js └── Workshops └── 2017-Jan-12 ├── gameOfTanks.js ├── min-avaScript.js └── valleys.js /Exams/2015-06-11-Variant-1/1. Powers/Description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2015-06-11-Variant-1/1. Powers/Description.pdf -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 5 1 2 | 9 0 2 4 1 3 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 26 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | 365 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.000.003.in.txt: -------------------------------------------------------------------------------- 1 | 10 10 2 | 0 1 2 3 4 5 6 7 8 9 3 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.001.in.txt: -------------------------------------------------------------------------------- 1 | 3 2 2 | 2 6 3 3 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.001.out.txt: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.002.in.txt: -------------------------------------------------------------------------------- 1 | 10 2 2 | 0 5 2 7 1 6 4 0 1 1 3 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.002.out.txt: -------------------------------------------------------------------------------- 1 | 52 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.003.out.txt: -------------------------------------------------------------------------------- 1 | 86 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.004.out.txt: -------------------------------------------------------------------------------- 1 | 113 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.005.out.txt: -------------------------------------------------------------------------------- 1 | 637 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.006.out.txt: -------------------------------------------------------------------------------- 1 | 251 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.007.out.txt: -------------------------------------------------------------------------------- 1 | 464 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.008.out.txt: -------------------------------------------------------------------------------- 1 | 973 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.009.out.txt: -------------------------------------------------------------------------------- 1 | 7312 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.010.out.txt: -------------------------------------------------------------------------------- 1 | 6833226 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.011.out.txt: -------------------------------------------------------------------------------- 1 | 1847 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.012.out.txt: -------------------------------------------------------------------------------- 1 | 1562442 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.013.out.txt: -------------------------------------------------------------------------------- 1 | 215 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.014.out.txt: -------------------------------------------------------------------------------- 1 | 364 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.015.out.txt: -------------------------------------------------------------------------------- 1 | 7665 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.016.out.txt: -------------------------------------------------------------------------------- 1 | 40563 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.017.out.txt: -------------------------------------------------------------------------------- 1 | 436486 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.018.out.txt: -------------------------------------------------------------------------------- 1 | 821 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.019.out.txt: -------------------------------------------------------------------------------- 1 | 6687784 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-1/1. Powers/tests/test.020.out.txt: -------------------------------------------------------------------------------- 1 | 8492286 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2015-06-11-Variant-2/.vscode/launch.json -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2015-06-11-Variant-2/1. Hills/README.md -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/imgs/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2015-06-11-Variant-2/1. Hills/imgs/example.png -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2015-06-11-Variant-2/1. Hills/solution.js -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 5 1 7 4 8 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.001.in.txt: -------------------------------------------------------------------------------- 1 | 79096 1629 34868 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.001.out.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.002.in.txt: -------------------------------------------------------------------------------- 1 | 84461 80452 25248 13023 39202 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.002.out.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.003.in.txt: -------------------------------------------------------------------------------- 1 | 8124 6944 48998 20669 95104 96260 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.003.out.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.004.out.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.005.out.txt: -------------------------------------------------------------------------------- 1 | 17 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.006.out.txt: -------------------------------------------------------------------------------- 1 | 44 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.007.out.txt: -------------------------------------------------------------------------------- 1 | 40 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.008.out.txt: -------------------------------------------------------------------------------- 1 | 66 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.009.out.txt: -------------------------------------------------------------------------------- 1 | 237 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.010.out.txt: -------------------------------------------------------------------------------- 1 | 277 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.011.out.txt: -------------------------------------------------------------------------------- 1 | 408 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.012.out.txt: -------------------------------------------------------------------------------- 1 | 327 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.013.out.txt: -------------------------------------------------------------------------------- 1 | 407 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.014.out.txt: -------------------------------------------------------------------------------- 1 | 450 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.015.out.txt: -------------------------------------------------------------------------------- 1 | 442 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.016.out.txt: -------------------------------------------------------------------------------- 1 | 615 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.017.out.txt: -------------------------------------------------------------------------------- 1 | 468 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.018.out.txt: -------------------------------------------------------------------------------- 1 | 76 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.019.out.txt: -------------------------------------------------------------------------------- 1 | 1025 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/1. Hills/tests/test.020.out.txt: -------------------------------------------------------------------------------- 1 | 4888 2 | -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/3. CookieLESS and CookieHas/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | .jedi { 2 | has: lightsaber; 3 | } -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/3. CookieLESS and CookieHas/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | .jedi { 2 | has: lightsaber; 3 | } -------------------------------------------------------------------------------- /Exams/2015-06-11-Variant-2/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2015-06-11-Variant-2/app.js -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2016-07-04-Variant-1/1. Valleys/README.md -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/imgs/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2016-07-04-Variant-1/1. Valleys/imgs/example.png -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2016-07-04-Variant-1/1. Valleys/solution.js -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 5 1 7 4 8 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 19 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | 5 1 7 6 5 6 4 2 3 8 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | 24 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.001.in.txt: -------------------------------------------------------------------------------- 1 | 95 94 95 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.001.out.txt: -------------------------------------------------------------------------------- 1 | 284 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.002.in.txt: -------------------------------------------------------------------------------- 1 | 66 65 23 77 78 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.002.out.txt: -------------------------------------------------------------------------------- 1 | 309 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.003.in.txt: -------------------------------------------------------------------------------- 1 | 87 86 93 17 34 35 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.003.out.txt: -------------------------------------------------------------------------------- 1 | 266 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.004.in.txt: -------------------------------------------------------------------------------- 1 | 17 16 17 94 70 20 31 65 42 43 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.004.out.txt: -------------------------------------------------------------------------------- 1 | 280 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.005.out.txt: -------------------------------------------------------------------------------- 1 | 327 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.006.out.txt: -------------------------------------------------------------------------------- 1 | 365 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.007.out.txt: -------------------------------------------------------------------------------- 1 | 423 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.008.out.txt: -------------------------------------------------------------------------------- 1 | 472 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.009.out.txt: -------------------------------------------------------------------------------- 1 | 535 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.010.out.txt: -------------------------------------------------------------------------------- 1 | 585 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.011.out.txt: -------------------------------------------------------------------------------- 1 | 609 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.012.out.txt: -------------------------------------------------------------------------------- 1 | 471 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.013.out.txt: -------------------------------------------------------------------------------- 1 | 537 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.014.out.txt: -------------------------------------------------------------------------------- 1 | 601 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.015.out.txt: -------------------------------------------------------------------------------- 1 | 635 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.016.out.txt: -------------------------------------------------------------------------------- 1 | 542 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.017.out.txt: -------------------------------------------------------------------------------- 1 | 593 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.018.out.txt: -------------------------------------------------------------------------------- 1 | 638 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.019.out.txt: -------------------------------------------------------------------------------- 1 | 548 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/1. Valleys/tests/test.020.out.txt: -------------------------------------------------------------------------------- 1 | 544 -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/2. Game of Tanks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2016-07-04-Variant-1/2. Game of Tanks/README.md -------------------------------------------------------------------------------- /Exams/2016-07-04-Variant-1/3. Min-avaScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2016-07-04-Variant-1/3. Min-avaScript/README.md -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/1. Pockets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2016-07-05-Variant-2/1. Pockets/README.md -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/1. Pockets/imgs/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2016-07-05-Variant-2/1. Pockets/imgs/example.png -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/1. Pockets/solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2016-07-05-Variant-2/1. Pockets/solution.js -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/1. Pockets/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 53 20 1 30 2 40 3 10 1 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/1. Pockets/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/1. Pockets/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/1. Pockets/tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/1. Pockets/tests/test.001.out.txt: -------------------------------------------------------------------------------- 1 | 14 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/1. Pockets/tests/test.002.out.txt: -------------------------------------------------------------------------------- 1 | 49 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/1. Pockets/tests/test.003.out.txt: -------------------------------------------------------------------------------- 1 | 20 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/1. Pockets/tests/test.004.out.txt: -------------------------------------------------------------------------------- 1 | 66 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/1. Pockets/tests/test.005.out.txt: -------------------------------------------------------------------------------- 1 | 25 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/1. Pockets/tests/test.006.out.txt: -------------------------------------------------------------------------------- 1 | 156 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/1. Pockets/tests/test.007.out.txt: -------------------------------------------------------------------------------- 1 | 1010 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/1. Pockets/tests/test.008.out.txt: -------------------------------------------------------------------------------- 1 | 1606 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/1. Pockets/tests/test.009.out.txt: -------------------------------------------------------------------------------- 1 | 9570 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/1. Pockets/tests/test.010.out.txt: -------------------------------------------------------------------------------- 1 | 19727 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/2. Game of Trolls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2016-07-05-Variant-2/2. Game of Trolls/README.md -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/2. Game of Trolls/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | Lsjtujzbo is saved! 6 2 3 4 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/2. Game of Trolls/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | The trolls caught Lsjtujzbo at 4 3 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/2. Game of Trolls/tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | The trolls caught Lsjtujzbo at 7 4 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/2. Game of Trolls/tests/test.001.out.txt: -------------------------------------------------------------------------------- 1 | The trolls caught Lsjtujzbo at 4 3 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/2. Game of Trolls/tests/test.002.out.txt: -------------------------------------------------------------------------------- 1 | The trolls caught Lsjtujzbo at 12 2 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/2. Game of Trolls/tests/test.003.out.txt: -------------------------------------------------------------------------------- 1 | Lsjtujzbo is saved! 2 3 2 2 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/2. Game of Trolls/tests/test.004.out.txt: -------------------------------------------------------------------------------- 1 | Lsjtujzbo is saved! 3 0 3 1 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/2. Game of Trolls/tests/test.005.out.txt: -------------------------------------------------------------------------------- 1 | The trolls caught Lsjtujzbo at 2 15 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/2. Game of Trolls/tests/test.007.out.txt: -------------------------------------------------------------------------------- 1 | Lsjtujzbo is saved! 23 4 10 2 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/2. Game of Trolls/tests/test.008.out.txt: -------------------------------------------------------------------------------- 1 | The trolls caught Lsjtujzbo at 17 17 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/2. Game of Trolls/tests/test.009.out.txt: -------------------------------------------------------------------------------- 1 | Lsjtujzbo is saved! 14 0 15 1 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/2. Game of Trolls/tests/test.010.in.txt: -------------------------------------------------------------------------------- 1 | 11 12 2 | 4 5;5 4;3 3 3 | mv Lsjtujzbo d -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/2. Game of Trolls/tests/test.010.out.txt: -------------------------------------------------------------------------------- 1 | The trolls caught Lsjtujzbo at 4 3 -------------------------------------------------------------------------------- /Exams/2016-07-05-Variant-2/3. Otp-adaScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2016-07-05-Variant-2/3. Otp-adaScript/README.md -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/README.md -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/imgs/example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/imgs/example-1.png -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/imgs/example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/imgs/example-2.png -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/solution.js -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 10 2 | 1 3 | 2 4 | 3 5 | 4 6 | 5 7 | 6 8 | 7 9 | 8 10 | 9 11 | 0 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 21 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | 329 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.001.in.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 401 3 | 929 4 | 510 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.001.out.txt: -------------------------------------------------------------------------------- 1 | 303 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.002.in.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 739 3 | 630 4 | 464 5 | 386 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.002.out.txt: -------------------------------------------------------------------------------- 1 | 731 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.003.in.txt: -------------------------------------------------------------------------------- 1 | 7 2 | 194 3 | 1012 4 | 650 5 | 259 6 | 133 7 | 500 8 | 680 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.003.out.txt: -------------------------------------------------------------------------------- 1 | 112 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.004.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/tests/test.004.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.004.out.txt: -------------------------------------------------------------------------------- 1 | 98 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.005.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/tests/test.005.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.005.out.txt: -------------------------------------------------------------------------------- 1 | 73 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.006.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/tests/test.006.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.006.out.txt: -------------------------------------------------------------------------------- 1 | 903 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.007.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/tests/test.007.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.007.out.txt: -------------------------------------------------------------------------------- 1 | 721 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.008.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/tests/test.008.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.008.out.txt: -------------------------------------------------------------------------------- 1 | 743 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.009.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/tests/test.009.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.009.out.txt: -------------------------------------------------------------------------------- 1 | 809 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.010.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/tests/test.010.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.010.out.txt: -------------------------------------------------------------------------------- 1 | 858 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.011.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/tests/test.011.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.011.out.txt: -------------------------------------------------------------------------------- 1 | 303 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.012.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/tests/test.012.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.012.out.txt: -------------------------------------------------------------------------------- 1 | 505 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.013.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/tests/test.013.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.013.out.txt: -------------------------------------------------------------------------------- 1 | 861 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.014.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/tests/test.014.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.014.out.txt: -------------------------------------------------------------------------------- 1 | 235 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.015.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/tests/test.015.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.015.out.txt: -------------------------------------------------------------------------------- 1 | 537 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.016.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/tests/test.016.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.016.out.txt: -------------------------------------------------------------------------------- 1 | 594 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.017.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/tests/test.017.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.017.out.txt: -------------------------------------------------------------------------------- 1 | 612 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.018.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/tests/test.018.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.018.out.txt: -------------------------------------------------------------------------------- 1 | 382 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.019.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/tests/test.019.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.019.out.txt: -------------------------------------------------------------------------------- 1 | 185 -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.020.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/1. Coki Skoki/tests/test.020.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/1. Coki Skoki/tests/test.020.out.txt: -------------------------------------------------------------------------------- 1 | 453 -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/2. Lost/README.md -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/imgs/start-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/2. Lost/imgs/start-1.png -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/imgs/start-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/2. Lost/imgs/start-2.png -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/imgs/turshiya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/2. Lost/imgs/turshiya.jpg -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/2. Lost/solution.js -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/2. Lost/tests/test.000.001.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | No rakiya, only JavaScript 0 1 -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.000.002.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/2. Lost/tests/test.000.002.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | No JavaScript, only rakiya 1 2 -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.001.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/2. Lost/tests/test.001.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.001.out.txt: -------------------------------------------------------------------------------- 1 | No rakiya, only JavaScript 0 5 -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.002.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/2. Lost/tests/test.002.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.002.out.txt: -------------------------------------------------------------------------------- 1 | No rakiya, only JavaScript 0 6 -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.003.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/2. Lost/tests/test.003.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.003.out.txt: -------------------------------------------------------------------------------- 1 | No rakiya, only JavaScript 4 20 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.004.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/2. Lost/tests/test.004.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.004.out.txt: -------------------------------------------------------------------------------- 1 | No JavaScript, only rakiya 6 12 -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.005.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/2. Lost/tests/test.005.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.005.out.txt: -------------------------------------------------------------------------------- 1 | No JavaScript, only rakiya 6 19 -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.006.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/2. Lost/tests/test.006.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.006.out.txt: -------------------------------------------------------------------------------- 1 | No JavaScript, only rakiya 8 26 -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.007.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/2. Lost/tests/test.007.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.007.out.txt: -------------------------------------------------------------------------------- 1 | No JavaScript, only rakiya 12 31 -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.008.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/2. Lost/tests/test.008.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.008.out.txt: -------------------------------------------------------------------------------- 1 | No JavaScript, only rakiya 16 32 -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.009.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/2. Lost/tests/test.009.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.009.out.txt: -------------------------------------------------------------------------------- 1 | No JavaScript, only rakiya 14 38 -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.010.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/2. Lost/tests/test.010.in.txt -------------------------------------------------------------------------------- /Exams/2017-01-18/2. Lost/tests/test.010.out.txt: -------------------------------------------------------------------------------- 1 | No JavaScript, only rakiya 23 45 -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/3. Minify KONPOT/README.md -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/3. Minify KONPOT/solution.js -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/solution2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Exams/2017-01-18/3. Minify KONPOT/solution2.js -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 24 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | 44 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | 146 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.001.out.txt: -------------------------------------------------------------------------------- 1 | 45 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.002.out.txt: -------------------------------------------------------------------------------- 1 | 46 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.003.out.txt: -------------------------------------------------------------------------------- 1 | 90 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.004.out.txt: -------------------------------------------------------------------------------- 1 | 186 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.005.out.txt: -------------------------------------------------------------------------------- 1 | 119 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.006.out.txt: -------------------------------------------------------------------------------- 1 | 210 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.007.out.txt: -------------------------------------------------------------------------------- 1 | 313 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.008.out.txt: -------------------------------------------------------------------------------- 1 | 300 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.009.out.txt: -------------------------------------------------------------------------------- 1 | 413 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.010.out.txt: -------------------------------------------------------------------------------- 1 | 442 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.011.out.txt: -------------------------------------------------------------------------------- 1 | 629 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.012.out.txt: -------------------------------------------------------------------------------- 1 | 1402 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.013.out.txt: -------------------------------------------------------------------------------- 1 | 1568 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.014.out.txt: -------------------------------------------------------------------------------- 1 | 2067 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.015.out.txt: -------------------------------------------------------------------------------- 1 | 2341 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.016.out.txt: -------------------------------------------------------------------------------- 1 | 2850 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.017.out.txt: -------------------------------------------------------------------------------- 1 | 11679 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.018.out.txt: -------------------------------------------------------------------------------- 1 | 5853 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.019.out.txt: -------------------------------------------------------------------------------- 1 | 11880 2 | -------------------------------------------------------------------------------- /Exams/2017-01-18/3. Minify KONPOT/tests/test.020.out.txt: -------------------------------------------------------------------------------- 1 | 11925 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/README.md -------------------------------------------------------------------------------- /Topics/00. Course-intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/00. Course-intro/README.md -------------------------------------------------------------------------------- /Topics/00. Course-intro/imgs/logo-js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/00. Course-intro/imgs/logo-js.png -------------------------------------------------------------------------------- /Topics/00. Course-intro/imgs/pic00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/00. Course-intro/imgs/pic00.png -------------------------------------------------------------------------------- /Topics/00. Course-intro/imgs/pic02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/00. Course-intro/imgs/pic02.png -------------------------------------------------------------------------------- /Topics/00. Course-intro/imgs/pic03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/00. Course-intro/imgs/pic03.png -------------------------------------------------------------------------------- /Topics/00. Course-intro/imgs/pic04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/00. Course-intro/imgs/pic04.png -------------------------------------------------------------------------------- /Topics/00. Course-intro/imgs/pic05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/00. Course-intro/imgs/pic05.png -------------------------------------------------------------------------------- /Topics/00. Course-intro/imgs/pic16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/00. Course-intro/imgs/pic16.png -------------------------------------------------------------------------------- /Topics/00. Course-intro/imgs/pic31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/00. Course-intro/imgs/pic31.png -------------------------------------------------------------------------------- /Topics/00. Course-intro/imgs/pic38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/00. Course-intro/imgs/pic38.png -------------------------------------------------------------------------------- /Topics/00. Course-intro/imgs/pic39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/00. Course-intro/imgs/pic39.png -------------------------------------------------------------------------------- /Topics/00. Course-intro/imgs/pic40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/00. Course-intro/imgs/pic40.png -------------------------------------------------------------------------------- /Topics/00. Course-intro/imgs/pic41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/00. Course-intro/imgs/pic41.png -------------------------------------------------------------------------------- /Topics/00. Course-intro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/00. Course-intro/index.html -------------------------------------------------------------------------------- /Topics/01. Javascript-Development-Tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/01. Javascript-Development-Tools/README.md -------------------------------------------------------------------------------- /Topics/01. Javascript-Development-Tools/imgs/pic01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/01. Javascript-Development-Tools/imgs/pic01.png -------------------------------------------------------------------------------- /Topics/01. Javascript-Development-Tools/imgs/pic02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/01. Javascript-Development-Tools/imgs/pic02.png -------------------------------------------------------------------------------- /Topics/01. Javascript-Development-Tools/imgs/pic03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/01. Javascript-Development-Tools/imgs/pic03.png -------------------------------------------------------------------------------- /Topics/01. Javascript-Development-Tools/imgs/pic04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/01. Javascript-Development-Tools/imgs/pic04.png -------------------------------------------------------------------------------- /Topics/01. Javascript-Development-Tools/imgs/pic05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/01. Javascript-Development-Tools/imgs/pic05.png -------------------------------------------------------------------------------- /Topics/01. Javascript-Development-Tools/imgs/pic06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/01. Javascript-Development-Tools/imgs/pic06.png -------------------------------------------------------------------------------- /Topics/01. Javascript-Development-Tools/imgs/pic07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/01. Javascript-Development-Tools/imgs/pic07.png -------------------------------------------------------------------------------- /Topics/01. Javascript-Development-Tools/imgs/pic08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/01. Javascript-Development-Tools/imgs/pic08.png -------------------------------------------------------------------------------- /Topics/01. Javascript-Development-Tools/imgs/pic09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/01. Javascript-Development-Tools/imgs/pic09.png -------------------------------------------------------------------------------- /Topics/01. Javascript-Development-Tools/imgs/pic10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/01. Javascript-Development-Tools/imgs/pic10.png -------------------------------------------------------------------------------- /Topics/01. Javascript-Development-Tools/imgs/pic11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/01. Javascript-Development-Tools/imgs/pic11.png -------------------------------------------------------------------------------- /Topics/01. Javascript-Development-Tools/imgs/pic12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/01. Javascript-Development-Tools/imgs/pic12.png -------------------------------------------------------------------------------- /Topics/01. Javascript-Development-Tools/imgs/pic13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/01. Javascript-Development-Tools/imgs/pic13.png -------------------------------------------------------------------------------- /Topics/01. Javascript-Development-Tools/imgs/pic14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/01. Javascript-Development-Tools/imgs/pic14.png -------------------------------------------------------------------------------- /Topics/01. Javascript-Development-Tools/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/01. Javascript-Development-Tools/index.html -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/README.md -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/homework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/homework/README.md -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic00.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic01.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic02.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic03.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic04.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic05.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic06.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic07.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic08.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic09.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic10.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic11.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic12.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic15.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic16.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic17.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic19.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic20.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic21.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic22.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic23.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic24.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic25.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic27.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic29.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic30.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic31.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic33.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic34.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic35.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic36.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic37.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic38.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic39.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic40.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic41.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic42.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic43.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic44.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/imgs/pic45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/imgs/pic45.png -------------------------------------------------------------------------------- /Topics/03. Data types and Variables/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/03. Data types and Variables/index.html -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/04. Operators and Expressions/README.md -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/01. Odd or Even/Tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/01. Odd or Even/Tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | even 2 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/01. Odd or Even/Tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | -2 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/01. Odd or Even/Tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | even -2 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/01. Odd or Even/Tests/test.000.003.in.txt: -------------------------------------------------------------------------------- 1 | -1 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/01. Odd or Even/Tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | odd -1 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/01. Odd or Even/Tests/test.000.004.in.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/01. Odd or Even/Tests/test.000.004.out.txt: -------------------------------------------------------------------------------- 1 | even 0 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/01. Odd or Even/Tests/test.000.005.in.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/01. Odd or Even/Tests/test.000.005.out.txt: -------------------------------------------------------------------------------- 1 | odd 3 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/02. Divisible by 7 and 5/Tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/02. Divisible by 7 and 5/Tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | true 0 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/02. Divisible by 7 and 5/Tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/02. Divisible by 7 and 5/Tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | false 5 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/02. Divisible by 7 and 5/Tests/test.000.003.in.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/02. Divisible by 7 and 5/Tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | false 7 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/02. Divisible by 7 and 5/Tests/test.000.004.in.txt: -------------------------------------------------------------------------------- 1 | 35 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/02. Divisible by 7 and 5/Tests/test.000.004.out.txt: -------------------------------------------------------------------------------- 1 | true 35 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/02. Divisible by 7 and 5/Tests/test.000.005.in.txt: -------------------------------------------------------------------------------- 1 | 140 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/02. Divisible by 7 and 5/Tests/test.000.005.out.txt: -------------------------------------------------------------------------------- 1 | true 140 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/02. Divisible by 7 and 5/Tests/test.000.006.in.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/02. Divisible by 7 and 5/Tests/test.000.006.out.txt: -------------------------------------------------------------------------------- 1 | false 3 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/03. Rectangles/Tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 2.5 2 | 3 3 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/03. Rectangles/Tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 7.50 11.00 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/03. Rectangles/Tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 5 3 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/03. Rectangles/Tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | 25.00 20.00 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/03. Rectangles/Tests/test.000.003.in.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 4 3 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/03. Rectangles/Tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | 12.00 14.00 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/04. Third digit/Tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 701 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/04. Third digit/Tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/04. Third digit/Tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | 9703 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/04. Third digit/Tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/04. Third digit/Tests/test.000.003.in.txt: -------------------------------------------------------------------------------- 1 | 877 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/04. Third digit/Tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | false 8 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/04. Third digit/Tests/test.000.004.in.txt: -------------------------------------------------------------------------------- 1 | 777877 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/04. Third digit/Tests/test.000.004.out.txt: -------------------------------------------------------------------------------- 1 | false 8 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/04. Third digit/Tests/test.000.005.in.txt: -------------------------------------------------------------------------------- 1 | 9999799 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/04. Third digit/Tests/test.000.005.out.txt: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/04. Third digit/Tests/test.000.006.in.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/04. Third digit/Tests/test.000.006.out.txt: -------------------------------------------------------------------------------- 1 | false 0 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/05. Third bit/Tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/05. Third bit/Tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/05. Third bit/Tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | 1024 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/05. Third bit/Tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/06. Point in Circle/Tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | -2 2 | 0 3 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/06. Point in Circle/Tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | yes 2.00 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/06. Point in Circle/Tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | -1 2 | 2 3 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/06. Point in Circle/Tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | no 2.24 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/06. Point in Circle/Tests/test.000.003.in.txt: -------------------------------------------------------------------------------- 1 | 1.5 2 | -1 3 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/06. Point in Circle/Tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | yes 1.80 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/06. Point in Circle/Tests/test.000.004.out.txt: -------------------------------------------------------------------------------- 1 | no 2.12 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/06. Point in Circle/Tests/test.000.005.in.txt: -------------------------------------------------------------------------------- 1 | 100 2 | -30 3 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/06. Point in Circle/Tests/test.000.005.out.txt: -------------------------------------------------------------------------------- 1 | no 104.40 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/06. Point in Circle/Tests/test.000.006.in.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/06. Point in Circle/Tests/test.000.006.out.txt: -------------------------------------------------------------------------------- 1 | yes 0.00 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/06. Point in Circle/Tests/test.000.007.in.txt: -------------------------------------------------------------------------------- 1 | 0.2 2 | -0.8 3 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/06. Point in Circle/Tests/test.000.007.out.txt: -------------------------------------------------------------------------------- 1 | yes 0.82 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/06. Point in Circle/Tests/test.000.008.in.txt: -------------------------------------------------------------------------------- 1 | 0.9 2 | -1.93 3 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/06. Point in Circle/Tests/test.000.008.out.txt: -------------------------------------------------------------------------------- 1 | no 2.13 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/06. Point in Circle/Tests/test.000.009.in.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 1.655 3 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/06. Point in Circle/Tests/test.000.009.out.txt: -------------------------------------------------------------------------------- 1 | yes 1.93 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/06. Point in Circle/Tests/test.000.010.in.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/06. Point in Circle/Tests/test.000.010.out.txt: -------------------------------------------------------------------------------- 1 | yes 1.00 -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/07. Prime Check/Tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/07. Prime Check/Tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/07. Prime Check/Tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | 23 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/07. Prime Check/Tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/07. Prime Check/Tests/test.000.003.in.txt: -------------------------------------------------------------------------------- 1 | -3 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/07. Prime Check/Tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/07. Prime Check/Tests/test.000.004.in.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/07. Prime Check/Tests/test.000.004.out.txt: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/07. Prime Check/Tests/test.000.005.in.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/07. Prime Check/Tests/test.000.005.out.txt: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/08. Trapezoids/Tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 1 3 | 33 4 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/08. Trapezoids/Tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | 8.5 2 | 4.3 3 | 2.7 4 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/08. Trapezoids/Tests/test.000.004.in.txt: -------------------------------------------------------------------------------- 1 | 0.222 2 | 0.333 3 | 0.555 4 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/08. Trapezoids/Tests/test.000.004.out.txt: -------------------------------------------------------------------------------- 1 | 0.1540125 2 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/08. Trapezoids/Tests/test.000.005.in.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 7 3 | 12 4 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/09. Point in Circle and outside Rectangle/Tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 2.5 2 | 2 3 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/09. Point in Circle and outside Rectangle/Tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/09. Point in Circle and outside Rectangle/Tests/test.000.003.in.txt: -------------------------------------------------------------------------------- 1 | 2.5 2 | 1 3 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/homework/09. Point in Circle and outside Rectangle/Tests/test.000.004.in.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/imgs/pic01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/04. Operators and Expressions/imgs/pic01.png -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/imgs/pic02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/04. Operators and Expressions/imgs/pic02.png -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/imgs/pic03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/04. Operators and Expressions/imgs/pic03.png -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/imgs/pic04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/04. Operators and Expressions/imgs/pic04.png -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/imgs/pic05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/04. Operators and Expressions/imgs/pic05.png -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/imgs/pic06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/04. Operators and Expressions/imgs/pic06.png -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/imgs/pic07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/04. Operators and Expressions/imgs/pic07.png -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/imgs/pic08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/04. Operators and Expressions/imgs/pic08.png -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/imgs/pic09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/04. Operators and Expressions/imgs/pic09.png -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/imgs/pic10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/04. Operators and Expressions/imgs/pic10.png -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/imgs/pic11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/04. Operators and Expressions/imgs/pic11.jpg -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/imgs/pic13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/04. Operators and Expressions/imgs/pic13.png -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/imgs/pic20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/04. Operators and Expressions/imgs/pic20.png -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/imgs/pic21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/04. Operators and Expressions/imgs/pic21.png -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/imgs/pic22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/04. Operators and Expressions/imgs/pic22.png -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/imgs/pic24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/04. Operators and Expressions/imgs/pic24.png -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/imgs/pic26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/04. Operators and Expressions/imgs/pic26.png -------------------------------------------------------------------------------- /Topics/04. Operators and Expressions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/04. Operators and Expressions/index.html -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/README.md -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/01. Exchange if greater/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 2 3 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/01. Exchange if greater/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 2 5 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/01. Exchange if greater/tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 4 3 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/01. Exchange if greater/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | 3 4 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/01. Exchange if greater/tests/test.000.003.in.txt: -------------------------------------------------------------------------------- 1 | 5.5 2 | 4.5 3 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/01. Exchange if greater/tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | 4.5 5.5 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/02. Multiplication Sign/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 2 3 | 2 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/02. Multiplication Sign/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | + 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/02. Multiplication Sign/tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | -2 2 | -2 3 | 1 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/02. Multiplication Sign/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | + 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/02. Multiplication Sign/tests/test.000.003.in.txt: -------------------------------------------------------------------------------- 1 | -2 2 | 4 3 | 3 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/02. Multiplication Sign/tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | - 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/02. Multiplication Sign/tests/test.000.004.in.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -2.5 3 | 4 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/02. Multiplication Sign/tests/test.000.004.out.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/02. Multiplication Sign/tests/test.000.005.in.txt: -------------------------------------------------------------------------------- 1 | -1 2 | -0.5 3 | -5.1 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/02. Multiplication Sign/tests/test.000.005.out.txt: -------------------------------------------------------------------------------- 1 | - 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/03. The biggest of Three/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 2 3 | 2 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/03. The biggest of Three/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/03. The biggest of Three/tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | -2 2 | -2 3 | 1 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/03. The biggest of Three/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/03. The biggest of Three/tests/test.000.003.in.txt: -------------------------------------------------------------------------------- 1 | -2 2 | 4 3 | 3 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/03. The biggest of Three/tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/03. The biggest of Three/tests/test.000.004.in.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -2.5 3 | 4 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/03. The biggest of Three/tests/test.000.004.out.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/03. The biggest of Three/tests/test.000.005.in.txt: -------------------------------------------------------------------------------- 1 | -0.1 2 | -0.5 3 | -1.1 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/03. The biggest of Three/tests/test.000.005.out.txt: -------------------------------------------------------------------------------- 1 | -0.1 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/04. Sort 3 numbers/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 1 3 | 2 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/04. Sort 3 numbers/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 5 2 1 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/04. Sort 3 numbers/tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | -2 2 | -2 3 | 1 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/04. Sort 3 numbers/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | 1 -2 -2 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/04. Sort 3 numbers/tests/test.000.003.in.txt: -------------------------------------------------------------------------------- 1 | -2 2 | 4 3 | 3 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/04. Sort 3 numbers/tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | 4 3 -2 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/04. Sort 3 numbers/tests/test.000.004.in.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -2.5 3 | 5 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/04. Sort 3 numbers/tests/test.000.004.out.txt: -------------------------------------------------------------------------------- 1 | 5 0 -2.5 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/04. Sort 3 numbers/tests/test.000.005.out.txt: -------------------------------------------------------------------------------- 1 | -0.1 -0.5 -1.1 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/04. Sort 3 numbers/tests/test.000.006.in.txt: -------------------------------------------------------------------------------- 1 | 10 2 | 20 3 | 30 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/04. Sort 3 numbers/tests/test.000.006.out.txt: -------------------------------------------------------------------------------- 1 | 30 20 10 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/04. Sort 3 numbers/tests/test.000.007.in.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 1 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/04. Sort 3 numbers/tests/test.000.007.out.txt: -------------------------------------------------------------------------------- 1 | 1 1 1 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/05. Digit as word/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/05. Digit as word/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | two 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/05. Digit as word/tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/05. Digit as word/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | one 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/05. Digit as word/tests/test.000.003.in.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/05. Digit as word/tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | zero 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/05. Digit as word/tests/test.000.004.in.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/05. Digit as word/tests/test.000.004.out.txt: -------------------------------------------------------------------------------- 1 | five 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/05. Digit as word/tests/test.000.005.in.txt: -------------------------------------------------------------------------------- 1 | -0.1 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/05. Digit as word/tests/test.000.005.out.txt: -------------------------------------------------------------------------------- 1 | not a digit 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/05. Digit as word/tests/test.000.006.in.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/05. Digit as word/tests/test.000.006.out.txt: -------------------------------------------------------------------------------- 1 | not a digit 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/05. Digit as word/tests/test.000.007.in.txt: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/05. Digit as word/tests/test.000.007.out.txt: -------------------------------------------------------------------------------- 1 | nine 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/05. Digit as word/tests/test.000.008.in.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/05. Digit as word/tests/test.000.008.out.txt: -------------------------------------------------------------------------------- 1 | not a digit 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/06. Quadratic equation/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 5 3 | -3 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/06. Quadratic equation/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | x1=-3.00; x2=0.50 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/06. Quadratic equation/tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | -1 2 | 3 3 | 0 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/06. Quadratic equation/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | x1=0.00; x2=3.00 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/06. Quadratic equation/tests/test.000.003.in.txt: -------------------------------------------------------------------------------- 1 | -0.5 2 | 4 3 | -8 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/06. Quadratic equation/tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | x1=x2=4.00 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/06. Quadratic equation/tests/test.000.004.in.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 2 3 | 8 4 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/06. Quadratic equation/tests/test.000.004.out.txt: -------------------------------------------------------------------------------- 1 | no real roots 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/06. Quadratic equation/tests/test.000.005.out.txt: -------------------------------------------------------------------------------- 1 | x1=-47.84; x2=-0.02 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/07. The biggest of five numbers/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 2 3 | 2 4 | 4 5 | 1 6 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/07. The biggest of five numbers/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/07. The biggest of five numbers/tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | -2 2 | -22 3 | 1 4 | 0 5 | 0 6 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/07. The biggest of five numbers/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/07. The biggest of five numbers/tests/test.000.003.in.txt: -------------------------------------------------------------------------------- 1 | -2 2 | 4 3 | 3 4 | 2 5 | 0 6 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/07. The biggest of five numbers/tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/07. The biggest of five numbers/tests/test.000.004.in.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -2.5 3 | 0 4 | 5 5 | 5 6 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/07. The biggest of five numbers/tests/test.000.004.out.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/07. The biggest of five numbers/tests/test.000.005.out.txt: -------------------------------------------------------------------------------- 1 | -0.1 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | Zero 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | Nine 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.003.in.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | Ten 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.004.in.txt: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.004.out.txt: -------------------------------------------------------------------------------- 1 | Twelve 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.005.in.txt: -------------------------------------------------------------------------------- 1 | 19 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.005.out.txt: -------------------------------------------------------------------------------- 1 | Nineteen 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.006.in.txt: -------------------------------------------------------------------------------- 1 | 25 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.006.out.txt: -------------------------------------------------------------------------------- 1 | Twenty five 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.007.in.txt: -------------------------------------------------------------------------------- 1 | 98 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.007.out.txt: -------------------------------------------------------------------------------- 1 | Ninety eight 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.008.in.txt: -------------------------------------------------------------------------------- 1 | 273 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.008.out.txt: -------------------------------------------------------------------------------- 1 | Two hundred and seventy three 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.009.in.txt: -------------------------------------------------------------------------------- 1 | 400 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.009.out.txt: -------------------------------------------------------------------------------- 1 | Four hundred 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.010.in.txt: -------------------------------------------------------------------------------- 1 | 501 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.010.out.txt: -------------------------------------------------------------------------------- 1 | Five hundred and one 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.011.in.txt: -------------------------------------------------------------------------------- 1 | 617 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.011.out.txt: -------------------------------------------------------------------------------- 1 | Six hundred and seventeen 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.012.in.txt: -------------------------------------------------------------------------------- 1 | 711 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.012.out.txt: -------------------------------------------------------------------------------- 1 | Seven hundred and eleven 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/08. Number as words/tests/test.000.013.in.txt: -------------------------------------------------------------------------------- 1 | 999 2 | -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/homework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/homework/README.md -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/imgs/pic00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/imgs/pic00.png -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/imgs/pic01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/imgs/pic01.png -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/imgs/pic02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/imgs/pic02.png -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/imgs/pic03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/imgs/pic03.png -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/imgs/pic04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/imgs/pic04.png -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/imgs/pic05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/imgs/pic05.png -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/imgs/pic06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/imgs/pic06.png -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/imgs/pic07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/imgs/pic07.png -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/imgs/pic08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/imgs/pic08.png -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/imgs/pic09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/imgs/pic09.png -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/imgs/pic10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/imgs/pic10.png -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/imgs/pic12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/imgs/pic12.png -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/imgs/pic13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/imgs/pic13.png -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/imgs/pic15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/imgs/pic15.png -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/imgs/pic24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/imgs/pic24.png -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/imgs/pic25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/imgs/pic25.png -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/imgs/pic26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/imgs/pic26.png -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/imgs/pic27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/imgs/pic27.png -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/imgs/sg30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/imgs/sg30.png -------------------------------------------------------------------------------- /Topics/05. Conditional Statements/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/05. Conditional Statements/index.html -------------------------------------------------------------------------------- /Topics/06. Loops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/README.md -------------------------------------------------------------------------------- /Topics/06. Loops/demos/1. while-loop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/demos/1. while-loop.html -------------------------------------------------------------------------------- /Topics/06. Loops/demos/2. break-operator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/demos/2. break-operator.html -------------------------------------------------------------------------------- /Topics/06. Loops/demos/3. do-while-loop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/demos/3. do-while-loop.html -------------------------------------------------------------------------------- /Topics/06. Loops/demos/4. for-loop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/demos/4. for-loop.html -------------------------------------------------------------------------------- /Topics/06. Loops/demos/5. triangle-nested-loops.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/demos/5. triangle-nested-loops.html -------------------------------------------------------------------------------- /Topics/06. Loops/demos/7. for-in-loop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/demos/7. for-in-loop.html -------------------------------------------------------------------------------- /Topics/06. Loops/demos/8. for-of-loop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/demos/8. for-of-loop.html -------------------------------------------------------------------------------- /Topics/06. Loops/demos/scripts/js-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/demos/scripts/js-console.js -------------------------------------------------------------------------------- /Topics/06. Loops/demos/styles/js-console.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/demos/styles/js-console.css -------------------------------------------------------------------------------- /Topics/06. Loops/homework/01. Numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/homework/01. Numbers/README.md -------------------------------------------------------------------------------- /Topics/06. Loops/homework/01. Numbers/Tests/test.000.000.in.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Topics/06. Loops/homework/01. Numbers/Tests/test.000.000.out.txt: -------------------------------------------------------------------------------- 1 | 1 2 3 4 5 -------------------------------------------------------------------------------- /Topics/06. Loops/homework/01. Numbers/Tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Topics/06. Loops/homework/01. Numbers/Tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Topics/06. Loops/homework/02. MMSA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/homework/02. MMSA/README.md -------------------------------------------------------------------------------- /Topics/06. Loops/homework/02. MMSA/Tests/test.000.000.in.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 5 3 | 1 4 | -------------------------------------------------------------------------------- /Topics/06. Loops/homework/02. MMSA/Tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -1 3 | 4 4 | -------------------------------------------------------------------------------- /Topics/06. Loops/homework/03. Matrix of numbers/Tests/test.000.000.in.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /Topics/06. Loops/homework/03. Matrix of numbers/Tests/test.000.000.out.txt: -------------------------------------------------------------------------------- 1 | 1 2 2 | 2 3 3 | -------------------------------------------------------------------------------- /Topics/06. Loops/homework/03. Matrix of numbers/Tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /Topics/06. Loops/homework/03. Matrix of numbers/Tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /Topics/06. Loops/homework/05. Hex to Decimal/Tests/test.000.000.in.txt: -------------------------------------------------------------------------------- 1 | 254 2 | -------------------------------------------------------------------------------- /Topics/06. Loops/homework/05. Hex to Decimal/Tests/test.000.000.out.txt: -------------------------------------------------------------------------------- 1 | FE 2 | -------------------------------------------------------------------------------- /Topics/06. Loops/homework/05. Hex to Decimal/Tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 6883 2 | -------------------------------------------------------------------------------- /Topics/06. Loops/homework/05. Hex to Decimal/Tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 1AE3 2 | -------------------------------------------------------------------------------- /Topics/06. Loops/homework/05. Hex to Decimal/Tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | 338583669684 2 | -------------------------------------------------------------------------------- /Topics/06. Loops/homework/05. Hex to Decimal/Tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | 4ED528CBB4 2 | -------------------------------------------------------------------------------- /Topics/06. Loops/homework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/homework/README.md -------------------------------------------------------------------------------- /Topics/06. Loops/imgs/pic00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/imgs/pic00.png -------------------------------------------------------------------------------- /Topics/06. Loops/imgs/pic01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/imgs/pic01.png -------------------------------------------------------------------------------- /Topics/06. Loops/imgs/pic02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/imgs/pic02.png -------------------------------------------------------------------------------- /Topics/06. Loops/imgs/pic03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/imgs/pic03.png -------------------------------------------------------------------------------- /Topics/06. Loops/imgs/pic04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/imgs/pic04.png -------------------------------------------------------------------------------- /Topics/06. Loops/imgs/pic08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/imgs/pic08.png -------------------------------------------------------------------------------- /Topics/06. Loops/imgs/pic09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/imgs/pic09.png -------------------------------------------------------------------------------- /Topics/06. Loops/imgs/pic10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/imgs/pic10.png -------------------------------------------------------------------------------- /Topics/06. Loops/imgs/pic11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/imgs/pic11.png -------------------------------------------------------------------------------- /Topics/06. Loops/imgs/pic13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/imgs/pic13.png -------------------------------------------------------------------------------- /Topics/06. Loops/imgs/pic14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/imgs/pic14.png -------------------------------------------------------------------------------- /Topics/06. Loops/imgs/pic16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/imgs/pic16.png -------------------------------------------------------------------------------- /Topics/06. Loops/imgs/pic17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/imgs/pic17.png -------------------------------------------------------------------------------- /Topics/06. Loops/imgs/pic21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/imgs/pic21.png -------------------------------------------------------------------------------- /Topics/06. Loops/imgs/pic22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/imgs/pic22.png -------------------------------------------------------------------------------- /Topics/06. Loops/imgs/pic25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/imgs/pic25.png -------------------------------------------------------------------------------- /Topics/06. Loops/imgs/pic26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/imgs/pic26.png -------------------------------------------------------------------------------- /Topics/06. Loops/imgs/pic27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/imgs/pic27.png -------------------------------------------------------------------------------- /Topics/06. Loops/imgs/pic28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/imgs/pic28.png -------------------------------------------------------------------------------- /Topics/06. Loops/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/06. Loops/index.html -------------------------------------------------------------------------------- /Topics/07. Arrays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/07. Arrays/README.md -------------------------------------------------------------------------------- /Topics/07. Arrays/demos/1. creating-arrays.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/07. Arrays/demos/1. creating-arrays.html -------------------------------------------------------------------------------- /Topics/07. Arrays/demos/2. reverse-array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/07. Arrays/demos/2. reverse-array.html -------------------------------------------------------------------------------- /Topics/07. Arrays/demos/3. processing-array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/07. Arrays/demos/3. processing-array.html -------------------------------------------------------------------------------- /Topics/07. Arrays/demos/4. dynamic-array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/07. Arrays/demos/4. dynamic-array.html -------------------------------------------------------------------------------- /Topics/07. Arrays/demos/5. sorting-array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/07. Arrays/demos/5. sorting-array.html -------------------------------------------------------------------------------- /Topics/07. Arrays/demos/6. other-functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/07. Arrays/demos/6. other-functions.html -------------------------------------------------------------------------------- /Topics/07. Arrays/demos/7. indexOf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/07. Arrays/demos/7. indexOf.html -------------------------------------------------------------------------------- /Topics/07. Arrays/demos/scripts/index-of.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/07. Arrays/demos/scripts/index-of.js -------------------------------------------------------------------------------- /Topics/07. Arrays/demos/scripts/js-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/07. Arrays/demos/scripts/js-console.js -------------------------------------------------------------------------------- /Topics/07. Arrays/demos/styles/js-console.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/07. Arrays/demos/styles/js-console.css -------------------------------------------------------------------------------- /Topics/07. Arrays/demos/styles/js-console.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/07. Arrays/demos/styles/js-console.less -------------------------------------------------------------------------------- /Topics/07. Arrays/demos/styles/js-console.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/07. Arrays/demos/styles/js-console.min.css -------------------------------------------------------------------------------- /Topics/07. Arrays/homework/01. Increase array members/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Topics/07. Arrays/homework/02. Lexicographically comparison/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | > 2 | -------------------------------------------------------------------------------- /Topics/07. Arrays/homework/02. Lexicographically comparison/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | = 2 | -------------------------------------------------------------------------------- /Topics/07. Arrays/homework/03. Maximal sequence/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /Topics/07. Arrays/homework/04. Maximal increasing sequence/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /Topics/07. Arrays/homework/05. Selection sort/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 3 3 | 4 4 | 1 5 | 5 6 | 2 7 | 6 8 | -------------------------------------------------------------------------------- /Topics/07. Arrays/homework/05. Selection sort/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | -------------------------------------------------------------------------------- /Topics/07. Arrays/homework/06. Most frequent number/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 4 (5 times) 2 | -------------------------------------------------------------------------------- /Topics/07. Arrays/homework/07. Binary search/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /Topics/07. Arrays/homework/10. Prime numbers/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /Topics/07. Arrays/homework/10. Prime numbers/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /Topics/07. Arrays/homework/10. Prime numbers/tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | 126 2 | -------------------------------------------------------------------------------- /Topics/07. Arrays/homework/10. Prime numbers/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | 113 2 | -------------------------------------------------------------------------------- /Topics/07. Arrays/homework/10. Prime numbers/tests/test.000.003.in.txt: -------------------------------------------------------------------------------- 1 | 26 2 | -------------------------------------------------------------------------------- /Topics/07. Arrays/homework/10. Prime numbers/tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | 23 2 | -------------------------------------------------------------------------------- /Topics/07. Arrays/homework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/07. Arrays/homework/README.md -------------------------------------------------------------------------------- /Topics/07. Arrays/imgs/pic01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/07. Arrays/imgs/pic01.png -------------------------------------------------------------------------------- /Topics/07. Arrays/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/07. Arrays/index.html -------------------------------------------------------------------------------- /Topics/08. Functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/README.md -------------------------------------------------------------------------------- /Topics/08. Functions/demos/01. functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/demos/01. functions.html -------------------------------------------------------------------------------- /Topics/08. Functions/demos/02. call-functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/demos/02. call-functions.html -------------------------------------------------------------------------------- /Topics/08. Functions/demos/04. print-triangle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/demos/04. print-triangle.html -------------------------------------------------------------------------------- /Topics/08. Functions/demos/05. arguments-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/demos/05. arguments-object.html -------------------------------------------------------------------------------- /Topics/08. Functions/demos/06. return-value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/demos/06. return-value.html -------------------------------------------------------------------------------- /Topics/08. Functions/demos/07. sum-even-numbers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/demos/07. sum-even-numbers.html -------------------------------------------------------------------------------- /Topics/08. Functions/demos/08. function-scope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/demos/08. function-scope.html -------------------------------------------------------------------------------- /Topics/08. Functions/demos/12. default-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/demos/12. default-values.html -------------------------------------------------------------------------------- /Topics/08. Functions/demos/scripts/js-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/demos/scripts/js-console.js -------------------------------------------------------------------------------- /Topics/08. Functions/demos/styles/js-console.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/demos/styles/js-console.css -------------------------------------------------------------------------------- /Topics/08. Functions/demos/styles/js-console.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/demos/styles/js-console.less -------------------------------------------------------------------------------- /Topics/08. Functions/homework/01. Say Hello/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | Peter 2 | -------------------------------------------------------------------------------- /Topics/08. Functions/homework/01. Say Hello/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | Hello, Peter! 2 | -------------------------------------------------------------------------------- /Topics/08. Functions/homework/02. Get largest number/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 8 3 6 2 | -------------------------------------------------------------------------------- /Topics/08. Functions/homework/02. Get largest number/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /Topics/08. Functions/homework/02. Get largest number/tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | 7 19 19 2 | -------------------------------------------------------------------------------- /Topics/08. Functions/homework/02. Get largest number/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | 19 2 | -------------------------------------------------------------------------------- /Topics/08. Functions/homework/03. English digit/tests/test.000.in.txt: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /Topics/08. Functions/homework/03. English digit/tests/test.000.out.txt: -------------------------------------------------------------------------------- 1 | two 2 | -------------------------------------------------------------------------------- /Topics/08. Functions/homework/04. Appearance count/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /Topics/08. Functions/homework/05. Larger than neighbours/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -26 -25 -28 31 2 27 3 | -------------------------------------------------------------------------------- /Topics/08. Functions/homework/05. Larger than neighbours/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /Topics/08. Functions/homework/06. First larger than neighbours/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -26 -25 -28 31 2 27 3 | -------------------------------------------------------------------------------- /Topics/08. Functions/homework/06. First larger than neighbours/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Topics/08. Functions/homework/07. Sorting array/tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 3 4 1 5 2 6 3 | -------------------------------------------------------------------------------- /Topics/08. Functions/homework/07. Sorting array/tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 1 2 3 4 5 6 2 | -------------------------------------------------------------------------------- /Topics/08. Functions/homework/07. Sorting array/tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | 10 2 | 36 10 1 34 28 38 31 27 30 20 3 | -------------------------------------------------------------------------------- /Topics/08. Functions/homework/07. Sorting array/tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | 1 10 20 27 28 30 31 34 36 38 2 | -------------------------------------------------------------------------------- /Topics/08. Functions/homework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/homework/README.md -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic00.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic01.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic02.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic03.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic04.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic05.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic06.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic07.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic08.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic09.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic10.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic11.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic12.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic13.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic14.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic15.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic16.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic17.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic18.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic19.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic20.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic21.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic22.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic23.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic24.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic25.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic26.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic27.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic28.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic29.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic30.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic31.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic32.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic33.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic34.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic35.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic36.png -------------------------------------------------------------------------------- /Topics/08. Functions/imgs/pic37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/imgs/pic37.png -------------------------------------------------------------------------------- /Topics/08. Functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/08. Functions/index.html -------------------------------------------------------------------------------- /Topics/09. Using Objects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/09. Using Objects/README.md -------------------------------------------------------------------------------- /Topics/09. Using Objects/demos/5. json-objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/09. Using Objects/demos/5. json-objects.html -------------------------------------------------------------------------------- /Topics/09. Using Objects/demos/scripts/js-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/09. Using Objects/demos/scripts/js-console.js -------------------------------------------------------------------------------- /Topics/09. Using Objects/demos/styles/js-console.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/09. Using Objects/demos/styles/js-console.css -------------------------------------------------------------------------------- /Topics/09. Using Objects/homework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/09. Using Objects/homework/README.md -------------------------------------------------------------------------------- /Topics/09. Using Objects/imgs/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/09. Using Objects/imgs/example.png -------------------------------------------------------------------------------- /Topics/09. Using Objects/imgs/pic01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/09. Using Objects/imgs/pic01.png -------------------------------------------------------------------------------- /Topics/09. Using Objects/imgs/pic02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/09. Using Objects/imgs/pic02.png -------------------------------------------------------------------------------- /Topics/09. Using Objects/imgs/pic03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/09. Using Objects/imgs/pic03.png -------------------------------------------------------------------------------- /Topics/09. Using Objects/imgs/pic04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/09. Using Objects/imgs/pic04.png -------------------------------------------------------------------------------- /Topics/09. Using Objects/imgs/pic05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/09. Using Objects/imgs/pic05.png -------------------------------------------------------------------------------- /Topics/09. Using Objects/imgs/pic06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/09. Using Objects/imgs/pic06.png -------------------------------------------------------------------------------- /Topics/09. Using Objects/imgs/pic07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/09. Using Objects/imgs/pic07.png -------------------------------------------------------------------------------- /Topics/09. Using Objects/imgs/types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/09. Using Objects/imgs/types.png -------------------------------------------------------------------------------- /Topics/09. Using Objects/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/09. Using Objects/index.html -------------------------------------------------------------------------------- /Topics/10. Methods on Arrays and Objects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/10. Methods on Arrays and Objects/README.md -------------------------------------------------------------------------------- /Topics/10. Methods on Arrays and Objects/demos/array-methods-playground/data/d: -------------------------------------------------------------------------------- 1 | PK -------------------------------------------------------------------------------- /Topics/10. Methods on Arrays and Objects/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/10. Methods on Arrays and Objects/index.html -------------------------------------------------------------------------------- /Topics/11. Strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/README.md -------------------------------------------------------------------------------- /Topics/11. Strings/demos/1. string-wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/demos/1. string-wrapper.html -------------------------------------------------------------------------------- /Topics/11. Strings/demos/2. string-methods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/demos/2. string-methods.html -------------------------------------------------------------------------------- /Topics/11. Strings/demos/4. string-escape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/demos/4. string-escape.html -------------------------------------------------------------------------------- /Topics/11. Strings/demos/5. trim-extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/demos/5. trim-extensions.html -------------------------------------------------------------------------------- /Topics/11. Strings/demos/6. padding-extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/demos/6. padding-extensions.html -------------------------------------------------------------------------------- /Topics/11. Strings/demos/scripts/js-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/demos/scripts/js-console.js -------------------------------------------------------------------------------- /Topics/11. Strings/demos/styles/js-console.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/demos/styles/js-console.css -------------------------------------------------------------------------------- /Topics/11. Strings/demos/styles/js-console.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/demos/styles/js-console.less -------------------------------------------------------------------------------- /Topics/11. Strings/homework/04. Parse tags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/homework/04. Parse tags/README.md -------------------------------------------------------------------------------- /Topics/11. Strings/homework/05. nbsp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/homework/05. nbsp/README.md -------------------------------------------------------------------------------- /Topics/11. Strings/homework/07. Parse URL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/homework/07. Parse URL/README.md -------------------------------------------------------------------------------- /Topics/11. Strings/homework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/homework/README.md -------------------------------------------------------------------------------- /Topics/11. Strings/imgs/pic00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/imgs/pic00.png -------------------------------------------------------------------------------- /Topics/11. Strings/imgs/pic01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/imgs/pic01.png -------------------------------------------------------------------------------- /Topics/11. Strings/imgs/pic02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/imgs/pic02.png -------------------------------------------------------------------------------- /Topics/11. Strings/imgs/pic03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/imgs/pic03.png -------------------------------------------------------------------------------- /Topics/11. Strings/imgs/pic04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/imgs/pic04.png -------------------------------------------------------------------------------- /Topics/11. Strings/imgs/pic05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/imgs/pic05.png -------------------------------------------------------------------------------- /Topics/11. Strings/imgs/pic06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/imgs/pic06.png -------------------------------------------------------------------------------- /Topics/11. Strings/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/11. Strings/index.html -------------------------------------------------------------------------------- /Topics/12. Regular Expressions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/12. Regular Expressions/README.md -------------------------------------------------------------------------------- /Topics/12. Regular Expressions/homework/01. Format with placeholders/Tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | {"name":"John"} 2 | Hello, there! Are you #{name}? 3 | -------------------------------------------------------------------------------- /Topics/12. Regular Expressions/homework/01. Format with placeholders/Tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | Hello, there! Are you John? -------------------------------------------------------------------------------- /Topics/12. Regular Expressions/homework/01. Format with placeholders/Tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | My name is John and I am 13-years-old -------------------------------------------------------------------------------- /Topics/12. Regular Expressions/homework/02. HTML binding/Tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 |
Steven
-------------------------------------------------------------------------------- /Topics/12. Regular Expressions/homework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/12. Regular Expressions/homework/README.md -------------------------------------------------------------------------------- /Topics/12. Regular Expressions/imgs/pic00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/12. Regular Expressions/imgs/pic00.png -------------------------------------------------------------------------------- /Topics/12. Regular Expressions/imgs/pic01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/12. Regular Expressions/imgs/pic01.png -------------------------------------------------------------------------------- /Topics/12. Regular Expressions/imgs/pic02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/12. Regular Expressions/imgs/pic02.png -------------------------------------------------------------------------------- /Topics/12. Regular Expressions/imgs/pic03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/12. Regular Expressions/imgs/pic03.png -------------------------------------------------------------------------------- /Topics/12. Regular Expressions/imgs/pic04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/12. Regular Expressions/imgs/pic04.png -------------------------------------------------------------------------------- /Topics/12. Regular Expressions/imgs/regex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/12. Regular Expressions/imgs/regex.jpg -------------------------------------------------------------------------------- /Topics/12. Regular Expressions/imgs/toc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/12. Regular Expressions/imgs/toc.png -------------------------------------------------------------------------------- /Topics/12. Regular Expressions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/12. Regular Expressions/index.html -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.000.003.in.txt: -------------------------------------------------------------------------------- 1 | 40 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.001.in.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.001.out.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.002.in.txt: -------------------------------------------------------------------------------- 1 | 29 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.002.out.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.003.in.txt: -------------------------------------------------------------------------------- 1 | 48 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.003.out.txt: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.004.in.txt: -------------------------------------------------------------------------------- 1 | 59 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.004.out.txt: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.005.in.txt: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.005.out.txt: -------------------------------------------------------------------------------- 1 | 51 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.006.in.txt: -------------------------------------------------------------------------------- 1 | 121 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.006.out.txt: -------------------------------------------------------------------------------- 1 | 68 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.007.in.txt: -------------------------------------------------------------------------------- 1 | 150 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.007.out.txt: -------------------------------------------------------------------------------- 1 | 107 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.008.in.txt: -------------------------------------------------------------------------------- 1 | 198 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.008.out.txt: -------------------------------------------------------------------------------- 1 | 180 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.009.in.txt: -------------------------------------------------------------------------------- 1 | 199 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.009.out.txt: -------------------------------------------------------------------------------- 1 | 177 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.010.in.txt: -------------------------------------------------------------------------------- 1 | 200 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 1/Vehicles-tests/test.010.out.txt: -------------------------------------------------------------------------------- 1 | 184 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | successed with 18 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | failed at (1, 3) -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.001.out.txt: -------------------------------------------------------------------------------- 1 | successed with 7 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.002.out.txt: -------------------------------------------------------------------------------- 1 | failed at (0, 2) 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.003.out.txt: -------------------------------------------------------------------------------- 1 | failed at (1, 3) 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.004.out.txt: -------------------------------------------------------------------------------- 1 | successed with 43 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.005.out.txt: -------------------------------------------------------------------------------- 1 | failed at (4, 10) 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.006.out.txt: -------------------------------------------------------------------------------- 1 | failed at (6, 12) 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.007.out.txt: -------------------------------------------------------------------------------- 1 | failed at (5, 11) 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.008.out.txt: -------------------------------------------------------------------------------- 1 | failed at (10, 10) 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.009.out.txt: -------------------------------------------------------------------------------- 1 | failed at (11, 11) 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.010.out.txt: -------------------------------------------------------------------------------- 1 | failed at (9, 13) 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.011.out.txt: -------------------------------------------------------------------------------- 1 | failed at (9, 19) 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.012.out.txt: -------------------------------------------------------------------------------- 1 | failed at (13, 13) 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.013.out.txt: -------------------------------------------------------------------------------- 1 | failed at (17, 17) 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.014.out.txt: -------------------------------------------------------------------------------- 1 | failed at (19, 19) 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.015.out.txt: -------------------------------------------------------------------------------- 1 | successed with 3670268 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.016.out.txt: -------------------------------------------------------------------------------- 1 | failed at (20, 24) 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.017.out.txt: -------------------------------------------------------------------------------- 1 | successed with 29360452 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.018.out.txt: -------------------------------------------------------------------------------- 1 | successed with 117440889 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.019.out.txt: -------------------------------------------------------------------------------- 1 | successed with 234881429 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 2/Paths-tests/test.020.out.txt: -------------------------------------------------------------------------------- 1 | successed with 1342177874 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 4 (Bonus)/Coord-System-tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | -1 2 | -2 3 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 4 (Bonus)/Coord-System-tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 4 (Bonus)/Coord-System-tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -2 3 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 4 (Bonus)/Coord-System-tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 4 (Bonus)/Coord-System-tests/test.000.003.in.txt: -------------------------------------------------------------------------------- 1 | -1 2 | 2 3 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 4 (Bonus)/Coord-System-tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 4 (Bonus)/Coord-System-tests/test.000.004.in.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 4 (Bonus)/Coord-System-tests/test.000.004.out.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 4 (Bonus)/Coord-System-tests/test.001.in.txt: -------------------------------------------------------------------------------- 1 | 789 2 | 987 3 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 4 (Bonus)/Coord-System-tests/test.001.out.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 4 (Bonus)/Coord-System-tests/test.002.in.txt: -------------------------------------------------------------------------------- 1 | -13 2 | 37 3 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 4 (Bonus)/Coord-System-tests/test.002.out.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 4 (Bonus)/Coord-System-tests/test.003.out.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-19/Problem 4 (Bonus)/Coord-System-tests/test.004.out.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 1/Cakes-tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 110 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 1/Cakes-tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 1/Cakes-tests/test.000.003.out.txt: -------------------------------------------------------------------------------- 1 | 107 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 1/Cakes-tests/test.001.out.txt: -------------------------------------------------------------------------------- 1 | 70 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 1/Cakes-tests/test.002.out.txt: -------------------------------------------------------------------------------- 1 | 200 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 1/Cakes-tests/test.003.out.txt: -------------------------------------------------------------------------------- 1 | 994 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 1/Cakes-tests/test.004.out.txt: -------------------------------------------------------------------------------- 1 | 996 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 1/Cakes-tests/test.005.in.txt: -------------------------------------------------------------------------------- 1 | 2000 2 | 987 3 | 876 4 | 765 5 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 1/Cakes-tests/test.005.out.txt: -------------------------------------------------------------------------------- 1 | 1974 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 1/Cakes-tests/test.006.out.txt: -------------------------------------------------------------------------------- 1 | 2995 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 1/Cakes-tests/test.007.in.txt: -------------------------------------------------------------------------------- 1 | 4000 2 | 79 3 | 3999 4 | 233 5 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 1/Cakes-tests/test.007.out.txt: -------------------------------------------------------------------------------- 1 | 3999 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 1/Cakes-tests/test.008.out.txt: -------------------------------------------------------------------------------- 1 | 4993 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 1/Cakes-tests/test.009.out.txt: -------------------------------------------------------------------------------- 1 | 5986 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 1/Cakes-tests/test.010.in.txt: -------------------------------------------------------------------------------- 1 | 7000 2 | 1999 3 | 1697 4 | 298 5 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 1/Cakes-tests/test.010.out.txt: -------------------------------------------------------------------------------- 1 | 6978 2 | -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 3 5 2 | 54561 3 | 43328 4 | 52388 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | Go go Horsy! Collected 1 weeds -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.000.002.in.txt: -------------------------------------------------------------------------------- 1 | 3 5 2 | 54361 3 | 43326 4 | 52188 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.000.002.out.txt: -------------------------------------------------------------------------------- 1 | Sadly the horse is doomed in 7 jumps -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.001.out.txt: -------------------------------------------------------------------------------- 1 | Sadly the horse is doomed in 2 jumps -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.002.out.txt: -------------------------------------------------------------------------------- 1 | Go go Horsy! Collected -491 weeds -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.003.out.txt: -------------------------------------------------------------------------------- 1 | Go go Horsy! Collected -967 weeds -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.004.out.txt: -------------------------------------------------------------------------------- 1 | Go go Horsy! Collected -1605 weeds -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.005.out.txt: -------------------------------------------------------------------------------- 1 | Sadly the horse is doomed in 6 jumps -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.006.out.txt: -------------------------------------------------------------------------------- 1 | Go go Horsy! Collected -4995 weeds -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.007.out.txt: -------------------------------------------------------------------------------- 1 | Go go Horsy! Collected -5549 weeds -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.008.out.txt: -------------------------------------------------------------------------------- 1 | Go go Horsy! Collected 8348 weeds -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.009.out.txt: -------------------------------------------------------------------------------- 1 | Sadly the horse is doomed in 12 jumps -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.010.out.txt: -------------------------------------------------------------------------------- 1 | Sadly the horse is doomed in 18 jumps -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.011.out.txt: -------------------------------------------------------------------------------- 1 | Go go Horsy! Collected 245447 weeds -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.012.out.txt: -------------------------------------------------------------------------------- 1 | Sadly the horse is doomed in 11 jumps -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.013.out.txt: -------------------------------------------------------------------------------- 1 | Go go Horsy! Collected 374881 weeds -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.014.out.txt: -------------------------------------------------------------------------------- 1 | Sadly the horse is doomed in 19 jumps -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.015.out.txt: -------------------------------------------------------------------------------- 1 | Sadly the horse is doomed in 14 jumps -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.016.out.txt: -------------------------------------------------------------------------------- 1 | Sadly the horse is doomed in 11 jumps -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.017.out.txt: -------------------------------------------------------------------------------- 1 | Go go Horsy! Collected 119140 weeds -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.018.out.txt: -------------------------------------------------------------------------------- 1 | Go go Horsy! Collected 248589 weeds -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.019.out.txt: -------------------------------------------------------------------------------- 1 | Sadly the horse is doomed in 16 jumps -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 2/Horsy-tests/test.020.out.txt: -------------------------------------------------------------------------------- 1 | Go go Horsy! Collected 1734945 weeds -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.000.001.in.txt: -------------------------------------------------------------------------------- 1 | 7 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.000.001.out.txt: -------------------------------------------------------------------------------- 1 | 214.5 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.001.in.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.001.out.txt: -------------------------------------------------------------------------------- 1 | 0.5 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.002.in.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.002.out.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.003.in.txt: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.003.out.txt: -------------------------------------------------------------------------------- 1 | 2.5 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.004.in.txt: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.004.out.txt: -------------------------------------------------------------------------------- 1 | 7 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.005.in.txt: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.005.out.txt: -------------------------------------------------------------------------------- 1 | 21 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.006.in.txt: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.006.out.txt: -------------------------------------------------------------------------------- 1 | 66 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.007.in.txt: -------------------------------------------------------------------------------- 1 | 8 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.007.out.txt: -------------------------------------------------------------------------------- 1 | 715 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.008.in.txt: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.008.out.txt: -------------------------------------------------------------------------------- 1 | 2431 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.009.in.txt: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.009.out.txt: -------------------------------------------------------------------------------- 1 | 8398 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.010.in.txt: -------------------------------------------------------------------------------- 1 | 11 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2014/May-20/Problem 4 (Bonus)/Catalan-Numbers-tests/test.010.out.txt: -------------------------------------------------------------------------------- 1 | 29393 -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2016/June-30/chess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/13. Exam preparation/2016/June-30/chess.js -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2016/June-30/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/13. Exam preparation/2016/June-30/cookie.js -------------------------------------------------------------------------------- /Topics/13. Exam preparation/2016/June-30/powers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Topics/13. Exam preparation/2016/June-30/powers.js -------------------------------------------------------------------------------- /Workshops/2017-Jan-12/gameOfTanks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Workshops/2017-Jan-12/gameOfTanks.js -------------------------------------------------------------------------------- /Workshops/2017-Jan-12/min-avaScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Workshops/2017-Jan-12/min-avaScript.js -------------------------------------------------------------------------------- /Workshops/2017-Jan-12/valleys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelerikAcademy/JavaScript-Fundamentals/HEAD/Workshops/2017-Jan-12/valleys.js --------------------------------------------------------------------------------