Guest User

Untitled

a guest
Jul 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. tmp = {}
  2. rows.each { |row|
  3. tmp[row.scan_id] ||= {}
  4.  
  5. tmp[row.scan_id][row.host] ||= 1
  6. tmp[row.scan_id][row.host] += 1
  7.  
  8. tmp[row.scan_id][row.port] ||= 1
  9. tmp[row.scan_id][row.port] += 1]
  10. }
Add Comment
Please, Sign In to add comment