Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib64 /
python2.7 /
Demo /
comparisons /
Delete
Unzip
Name
Size
Permission
Date
Action
README
2.28
KB
-rw-r--r--
2013-05-11 23:32
patterns
30
B
-rwxr-xr-x
2013-05-11 23:32
regextest.py
1.48
KB
-rwxr-xr-x
2013-05-11 23:32
regextest.pyc
1.06
KB
-rw-r--r--
2025-11-12 09:25
regextest.pyo
1.06
KB
-rw-r--r--
2025-11-12 09:25
sortingtest.py
1.24
KB
-rwxr-xr-x
2013-05-11 23:32
sortingtest.pyc
1.02
KB
-rw-r--r--
2025-11-12 09:25
sortingtest.pyo
1.02
KB
-rw-r--r--
2025-11-12 09:25
systemtest.py
2.23
KB
-rwxr-xr-x
2013-05-11 23:32
systemtest.pyc
1.56
KB
-rw-r--r--
2025-11-12 09:25
systemtest.pyo
1.56
KB
-rw-r--r--
2025-11-12 09:25
Save
Rename
#! /usr/bin/env python # 2) Sorting Test # # Sort an input file that consists of lines like this # # var1=23 other=14 ditto=23 fred=2 # # such that each output line is sorted WRT to the number. Order # of output lines does not change. Resolve collisions using the # variable name. e.g. # # fred=2 other=14 ditto=23 var1=23 # # Lines may be up to several kilobytes in length and contain # zillions of variables. # This implementation: # - Reads stdin, writes stdout # - Uses any amount of whitespace to separate fields # - Allows signed numbers # - Treats illegally formatted fields as field=0 # - Outputs the sorted fields with exactly one space between them # - Handles blank input lines correctly import re import sys def main(): prog = re.compile('^(.*)=([-+]?[0-9]+)') def makekey(item, prog=prog): match = prog.match(item) if match: var, num = match.groups() return int(num), var else: # Bad input -- pretend it's a var with value 0 return 0, item for line in sys.stdin: items = sorted(makekey(item) for item in line.split()) for num, var in items: print "%s=%s" % (var, num), print main()