Top "Reverse" questions

Rearranging the order of a sequence such that the final order is a mirror image of the original.

angular ng-repeat in reverse

How can i get a reversed array in angular? i'm trying to use orderBy filter, but it needs a predicate(…

javascript arrays angularjs reverse angularjs-ng-repeat
Reverse a string without using reversed() or [::-1]?

I came across a strange Codecademy exercise that required a function that would take a string as input and return …

python string function for-loop reverse
Java reverse an int value without using array

Can anyone explain to me how to reverse an integer without using array or String. I got this code from …

java integer reverse
Reverse each individual word of "Hello World" string with Java

I want to reverse each individual word of a String in Java (not the entire string, just each individual word). …

java string reverse
How to read a file in reverse order?

How to read a file in reverse order using python? I want to read a file from last line to …

python file reverse
How to reverse an std::string?

Im trying to figure out how to reverse the string temp when I have the string read in binary numbers …

c++ string binary reverse
Reversing a String with Recursion in Java

Here is some Java code to reverse a string recursively. Could someone provide an explanation of how it works? public …

java string recursion reverse
Reverse Contents in Array

I have an array of numbers that I am trying to reverse. I believe the function in my code is …

c++ arrays function reverse
Can one do a for each loop in java in reverse order?

I need to run through a List in reverse order using Java. So where this does it forwards: for(String …

java reverse foreach
Python: How exactly can you take a string, split it, reverse it and join it back together again?

How exactly can you take a string, split it, reverse it and join it back together again without the brackets, …

python string join split reverse