fork download
  1. // your code goes here
  2.  
  3. /*
  4. Input:
  5.  
  6. Given an array as input which has some elements along with nested arrays.
  7.  
  8. Flatten the given array completely including the nested elements into a single array.
  9.  
  10. Eg: const arr = ["text", 100, 20, false, [[1, 2, [5, [9, 10]]], [[11, 12, [13, 14, 15, 16, [17, 18]]]]
  11.  
  12. Output:
  13. ["text", 100, 20, false, 1, 2, 5, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18]
  14.  
  15.  
  16. Output for the above example
  17.  
  18. */
Success #stdin #stdout 0.04s 16568KB
stdin
Standard input is empty
stdout
Standard output is empty