Popis problému
Celý popis zadania sa nacháza – Hackerrank.
Riešenie
Vytvoril som riešenie v týchto programovacích jazykoch:
Všetky riešenia sú dostupné aj na mojom GitHub profile.
Bash
1 2 3 4 5 6 7 8 9 10 11 12 |
#!/bin/bash read x read y if ((x < y)); then echo "X is less than Y" elif ((x > y)); then echo "X is greater than Y" else echo "X is equal to Y" fi |