Skip to content

Commit

Permalink
generate users complete
Browse files Browse the repository at this point in the history
  • Loading branch information
txiong000 committed Feb 6, 2019
1 parent 1d8c4a0 commit 2f93ff1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/graph/social/social.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ def populateGraph(self, numUsers, avgFriendships):
self.friendships = {}
# !!!! IMPLEMENT ME
# Add users
for user in range(1, numUsers):
self.users[user] =
for user in range(1, numUsers+1):
self.users[user] = None
# Create friendshipss

def getAllSocialPaths(self, userID):
Expand Down

0 comments on commit 2f93ff1

Please sign in to comment.