This file contains hidden or 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
from collections import Counter | |
import os | |
import sys | |
class Mapping: | |
def __init__(self, line): | |
# 00400000-00401000 r-xp 00000000 00:25 169557646 /afs/ir.stanford.edu/users/s/a/saurabh1/research/testproc | |
components = line.strip().split() | |
addrs = components[0].split("-") |