Advertisement
pradiptaagus

Untitled

Mar 24th, 2022
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. Given an array of numbers below
  2. [
  3. [21, 86, 90, 43, 68, 32],
  4. [8, 632, 639, 397, 1, 45],
  5. [15, 379, 10, 76, 90, 35]
  6. ]
  7.  
  8. 1. Sort the given array ascending and descending (don't use a built-in function).
  9. 2. Sum all array members into 1 value (don't use a built-in function).
  10. 3. Find the highest and lowest number (don't use a built-in function).
  11.  
  12. Please write clean and efficient code. Happy code :)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement