├── LICENSE ├── README.md ├── temperature-converter ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── bin │ └── env_setup ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── temperatureConverter │ │ │ ├── temperatureConverter.component.html │ │ │ ├── temperatureConverter.component.scss │ │ │ ├── temperatureConverter.component.spec.ts │ │ │ └── temperatureConverter.component.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── unit.xml └── weather-component ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── bin └── env_setup ├── karma.conf.js ├── package-lock.json ├── package.json ├── src ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ └── weatherDetails │ │ ├── weatherDetails.component.html │ │ ├── weatherDetails.component.scss │ │ ├── weatherDetails.component.spec.ts │ │ └── weatherDetails.component.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── unit.xml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/README.md -------------------------------------------------------------------------------- /temperature-converter/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/.editorconfig -------------------------------------------------------------------------------- /temperature-converter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/.gitignore -------------------------------------------------------------------------------- /temperature-converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/README.md -------------------------------------------------------------------------------- /temperature-converter/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/angular.json -------------------------------------------------------------------------------- /temperature-converter/bin/env_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/bin/env_setup -------------------------------------------------------------------------------- /temperature-converter/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/karma.conf.js -------------------------------------------------------------------------------- /temperature-converter/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/package-lock.json -------------------------------------------------------------------------------- /temperature-converter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/package.json -------------------------------------------------------------------------------- /temperature-converter/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/src/app/app.component.html -------------------------------------------------------------------------------- /temperature-converter/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /temperature-converter/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /temperature-converter/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/src/app/app.component.ts -------------------------------------------------------------------------------- /temperature-converter/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/src/app/app.module.ts -------------------------------------------------------------------------------- /temperature-converter/src/app/temperatureConverter/temperatureConverter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/src/app/temperatureConverter/temperatureConverter.component.html -------------------------------------------------------------------------------- /temperature-converter/src/app/temperatureConverter/temperatureConverter.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/src/app/temperatureConverter/temperatureConverter.component.scss -------------------------------------------------------------------------------- /temperature-converter/src/app/temperatureConverter/temperatureConverter.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/src/app/temperatureConverter/temperatureConverter.component.spec.ts -------------------------------------------------------------------------------- /temperature-converter/src/app/temperatureConverter/temperatureConverter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/src/app/temperatureConverter/temperatureConverter.component.ts -------------------------------------------------------------------------------- /temperature-converter/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /temperature-converter/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /temperature-converter/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/src/environments/environment.ts -------------------------------------------------------------------------------- /temperature-converter/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/src/favicon.ico -------------------------------------------------------------------------------- /temperature-converter/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/src/index.html -------------------------------------------------------------------------------- /temperature-converter/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/src/main.ts -------------------------------------------------------------------------------- /temperature-converter/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/src/polyfills.ts -------------------------------------------------------------------------------- /temperature-converter/src/styles.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/h8k-design/lib/index"; 2 | 3 | body { 4 | margin: 0; 5 | } 6 | -------------------------------------------------------------------------------- /temperature-converter/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/src/test.ts -------------------------------------------------------------------------------- /temperature-converter/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/tsconfig.app.json -------------------------------------------------------------------------------- /temperature-converter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/tsconfig.json -------------------------------------------------------------------------------- /temperature-converter/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/tsconfig.spec.json -------------------------------------------------------------------------------- /temperature-converter/unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/temperature-converter/unit.xml -------------------------------------------------------------------------------- /weather-component/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/.editorconfig -------------------------------------------------------------------------------- /weather-component/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/.gitignore -------------------------------------------------------------------------------- /weather-component/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/README.md -------------------------------------------------------------------------------- /weather-component/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/angular.json -------------------------------------------------------------------------------- /weather-component/bin/env_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/bin/env_setup -------------------------------------------------------------------------------- /weather-component/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/karma.conf.js -------------------------------------------------------------------------------- /weather-component/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/package-lock.json -------------------------------------------------------------------------------- /weather-component/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/package.json -------------------------------------------------------------------------------- /weather-component/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/src/app/app.component.html -------------------------------------------------------------------------------- /weather-component/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weather-component/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /weather-component/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/src/app/app.component.ts -------------------------------------------------------------------------------- /weather-component/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/src/app/app.module.ts -------------------------------------------------------------------------------- /weather-component/src/app/weatherDetails/weatherDetails.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/src/app/weatherDetails/weatherDetails.component.html -------------------------------------------------------------------------------- /weather-component/src/app/weatherDetails/weatherDetails.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/src/app/weatherDetails/weatherDetails.component.scss -------------------------------------------------------------------------------- /weather-component/src/app/weatherDetails/weatherDetails.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/src/app/weatherDetails/weatherDetails.component.spec.ts -------------------------------------------------------------------------------- /weather-component/src/app/weatherDetails/weatherDetails.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/src/app/weatherDetails/weatherDetails.component.ts -------------------------------------------------------------------------------- /weather-component/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weather-component/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /weather-component/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/src/environments/environment.ts -------------------------------------------------------------------------------- /weather-component/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/src/favicon.ico -------------------------------------------------------------------------------- /weather-component/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/src/index.html -------------------------------------------------------------------------------- /weather-component/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/src/main.ts -------------------------------------------------------------------------------- /weather-component/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/src/polyfills.ts -------------------------------------------------------------------------------- /weather-component/src/styles.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/h8k-design/lib/index"; 2 | 3 | body { 4 | margin: 0; 5 | } 6 | -------------------------------------------------------------------------------- /weather-component/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/src/test.ts -------------------------------------------------------------------------------- /weather-component/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/tsconfig.app.json -------------------------------------------------------------------------------- /weather-component/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/tsconfig.json -------------------------------------------------------------------------------- /weather-component/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/tsconfig.spec.json -------------------------------------------------------------------------------- /weather-component/unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adminazhar/HackerRank-Angular-Basic-Certification-Solution/HEAD/weather-component/unit.xml --------------------------------------------------------------------------------