fork download
  1. # your code goes here
  2. b={}
  3. j={}
  4. c={}
  5. b['m']=1
  6. b['n']=2
  7. j['h']=4
  8. c['b']=b
  9. c['j']=j
  10. print len(c[b])
Runtime error #stdin #stdout #stderr 0s 23304KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "prog.py", line 10, in <module>
TypeError: unhashable type: 'dict'