Skip to content
Snippets Groups Projects
Select Git revision
  • 712a37e3d4bda4d8384a218fa3c349748e1e3fc2
  • master default protected
  • hai
  • isaac
  • CheHao
  • Eldar
  • mpriymak
  • master-before-merging-with-hai
  • master-before-merging-with-isaac
  • rmi-working-before-merging-with-isaac
  • all-code-merged-by-hai-v1
11 results

Client2.java

Blame
  • Forked from Ho Dac Hai / COMP90015-DSAss2-InfinityMonkeys-remaster
    Source project has a limited visibility.
    utilis.py 220 B
    file = open("workfile","r")
    print(file.readline())
    
    
    # regular expression
    
    
    def read():
    
    
        map = {'N':100, 'M':2}
    
        return map
    
    
    
    def combine_dict(dict1, dict2):
        return {k: (dict1[k] + dict2[k]) for k in dict1}