Metadata-Version: 2.1
Name: WormholeSort
Version: 1.0.1
Summary: An alternative sorting method that sorts the indices rather than list elements.
Author-email: arda-guler <ardaguler09@gmail.com>
Project-URL: Homepage, https://github.com/arda-guler/WormholeSort
Project-URL: Bug Tracker, https://github.com/arda-guler/WormholeSort/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Wormhole Sort
"Wormhole Sort" implements a way to sort your lists by sorting the indexes rather than the list elements. This way, the order of the elements is not modified, but the way you access the elements is.

## What It Does & How to Use
Imagine you have the following list:
```python
sample_list = [5, 3, -2, 12, 6, 120, 5]
```
You would like to sort this list, but you want the list data to remain the same. Instead of moving the elements, you just warp the topology of the spacetime manifold that exists in between the elements, reconnecting it in an ordered manner.
```python
sorted_list = WormholeList(sample_list)
```
The result can be checked like so:
```python
print("List data:", sorted_list)

print("List elements accessed in order:")
for i in range(len(sorted_list)):
    print("Index", i, "=", sorted_list[i])
```

Which gives the following result as the output:
```
List data: [5, 3, -2, 12, 6, 120, 5]
List elements accessed in order:
Index 0 = -2
Index 1 = 3
Index 2 = 5
Index 3 = 5
Index 4 = 6
Index 5 = 12
Index 6 = 120
```
