Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Could you please show the code you have written. The error might be caused by which array you have returned.
The error might be that you returned both the original input array and the array that you wanted to return. The compiler thinks that the original input array is your reversed array and generates an error because it differs with the reversed array in the test case.Your array that holds the reversed data segments is only right for the first 8 values. Remember: one segment = 8 (values) bits. Try to find a way for reversing the order of the total amount of segments that can be made.