This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BQS?83\N-?F"VB?EHl+RA7f[nFa#ZYFC]8HGB#6FD/<c9Ecj$E@p3h,0R?e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
76!n,/Q>\:3A!-F2GGbr:.A58=[PnQ/Oru86N |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
data = [] | |
datalen = 0 | |
with open(sys.argv[1],'r') as f: | |
for line in f: | |
for word in line.split(): | |
datalen=datalen+1 | |
data.insert(datalen, " "+word) | |
print("Array data: (NO SORTING)") | |
print(data) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hello, World |