Submitted Questions

  • How do you sort an array without using API

    vedansh

    • Oct 18th, 2016

    your Given Algo doesnt work ,Can be done this way : "java static void getShort(int[] intArr1) { int[] intArr = intArr1; for (int j = 0; j < intArr.length; j++) { for (int...

    Manpreet Kesar

    • May 26th, 2016

    Hi
    Your Code is totally wrong... it works only on integers what you have provided....but it doesnt work on another integers set.

    Actually U have tried Bubble Sort , but you dont know bubble sort requires two loops one for passes and one for to swap elements.