Top "Reverse" questions

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

Reverse Scoring Items

I have a survey of about 80 items, primarily the items are valanced positively (higher scores indicate better outcome), but about 20 …

r reverse scoring
Array Reverse is not working for me ...

Consider the following code (React JS code): poll() { var self = this; var url = "//" + location.hostname + "/api/v1/eve/history/historical-data/" + …

javascript arrays reverse array-reverse
What's "better" the reverse method or the reversed built-in function?

What is typically regarded as more Pythonic/better/faster to use, the reverse method or the reversed built-in function? Both …

python list methods reverse built-in
http_sub_module / sub_filter of nginx and reverse proxy not working

I am trying to reverse proxy my website and modify the content. To do so, I compiled nginx with sub_…

nginx proxy reverse inject
Python Reverse Generator

I'm looking for a way to reverse a generator object. I know how to reverse sequences: foo = imap(seq.__getitem__, …

python generator reverse
Linked list recursive reverse

I was looking at the code below from stanford library: void recursiveReverse(struct node** head_ref) { struct node* first; struct …

c algorithm recursion linked-list reverse
Reverse a string in Python two characters at a time (Network byte order)

Say you have this string: ABCDEFGH And you want to reverse it so that it becomes: GHEFCDAB What would be …

python string reverse
How to traverse Linked Hash Map in reverse?

Possible Duplicate: Iterating through a LinkedHashMap in reverse order How to traverse Linked Hash Map in a reverse order? Is …

java reverse linkedhashmap
How to iterate Lua table from end?

How do I iterate a simple Lua table, that is a sequence, from end? Example of wanted behavior: local mytable = {…

lua iterator reverse lua-table
Reversed cumulative sum of a column in pandas.DataFrame

I've got a pandas DataFrame with a boolean column sorted by another column and need to calculate reverse cumulative sum …

python pandas dataframe reverse