Problem
1 2 3 4 5 6 7 8 |
//----------------------------------------------------------------------------------------------------------- // This is another SDE Job Interview programming problem. // Problem: Given an array of int {1,2,3,4,5,6,7,8,9...} build a function to swap its item. // // input: 1 2 3 4 5 6 7 8 9 0 // output: 0 9 8 7 6 5 4 3 2 1 // //---------------------------------------------------------------------------------------------------- |
Recent Comments