About 52 results
Open links in new tab
  1. javascript - 8.12.5: Mutual Friends CodeHS - Stack Overflow

    Nov 30, 2020 · Here's the given problem: Write a program that prints the mutual friends between two people. You should create two sets, one for each person, and add friends (strings) to each set …

  2. Finding mutual friends on facebook - Stack Overflow

    I referred to many other questions: Facebook Graph API 2.2 mutual friends => No answers How to get Mutual Friends via Facebook's Graph API => The solution works only if the two users are friends, …

  3. how can i calculate mutual friends/followers efficiently?

    Mar 21, 2024 · i need to calculate mutual friends between users, right now it is working fine, but i don't think it will work for users who have a large follower base, it will take a long to load and compare. ple...

  4. MySQL Query to find friends and number of mutual friends

    Oct 29, 2012 · Then I want to have how many mutual friends each of these users has with the user doing the search so the returned results would look like: ... Each of these returned users has 1 …

  5. SQL Query to find number of mutual friends given a table of person ...

    Dec 24, 2018 · SQL Query to find number of mutual friends given a table of person, friend pair Ask Question Asked 7 years, 3 months ago Modified 7 years, 3 months ago

  6. python - Discord.py Bot - Mutual Friends - Stack Overflow

    Aug 13, 2021 · I'm trying to create a 1v1-style bot. For this Discord Bot, I need to know if two users are friends in Discord. I looked through the Docs and saw that there's a command to find mutual friends …

  7. Find the number of mutual friends in Python - Stack Overflow

    Oct 17, 2020 · To find the number of mutual friends between two people, compare their lists of friends and counts the number of friends that they have in common. Here is an example of how you could do …

  8. mysql - SQL query for mutual friends - Stack Overflow

    My MySQL tables structure is like this. USER uid FRIENDS fuid,fuid2,fapproved For each friend relationship I insert 2 records in FRIENDS. If user 1 is friend of user 2 then the next rows are inse...

  9. Facebook API - Mutual Friends - Stack Overflow

    Oct 25, 2015 · The All Mutual Friends API gives you access to all the mutual friends between two people who use your app. The response includes mutual friends who use your app as well as limited …

  10. graph theory - Algorithm - Friend of a friend - Stack Overflow

    The shortest friendship link contains the fewest number of people. For example; A and B are mutual friends and B and C are mutual friends, if A and C are also mutual friends then A-C and A-B-C are …