- Fork this repository into your own GitHub account (you can create a GitHub account if you do not have one)
- Kindly add
MYwavePSSDas collaborator - Commit all your changes into your fork
- Put all your source codes into
srcfolder
- You can use any programming language
- You are not allowed to use language library function to solve the problem (especially on sorting the numbers)
Given a list of random unordered numbers, find those numbers that are divisible by 4 or 5 and return them in descending order (largest to smallest).
Example input: 21, 400, 8, -3, 77, 99, -16, 55, 111, -36, 28
Expected output: 400, 55, 28, 8, -16, -36