id
int64 0
5k
| problem_text
stringlengths 639
1.86k
| graph
stringlengths 237
1.88k
| path
listlengths 1
9
| exact_answer
int64 1
9
|
---|---|---|---|---|
2,000 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Steven Chang, Mark Barnes, Sue Hall, Mr. Kevin Cowan DDS, Matthew Wilson, Sean Cooley, Victor Rivers
- Fiendship connections: Steven Chang to Sue Hall, Steven Chang to Sean Cooley, Steven Chang to Matthew Wilson, Steven Chang to Mr. Kevin Cowan DDS, Steven Chang to Mark Barnes, Mark Barnes to Sue Hall, Mark Barnes to Sean Cooley, Sue Hall to Sean Cooley, Sue Hall to Matthew Wilson, Sue Hall to Mr. Kevin Cowan DDS, Mr. Kevin Cowan DDS to Sean Cooley, Mr. Kevin Cowan DDS to Victor Rivers
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Steven Chang", "id": 2405190}, {"name": "Mark Barnes", "id": 2528488}, {"name": "Sue Hall", "id": 2411179}, {"name": "Mr. Kevin Cowan DDS", "id": 2528023}, {"name": "Matthew Wilson", "id": 2484142}, {"name": "Sean Cooley", "id": 2462998}, {"name": "Victor Rivers", "id": 2482999}], "links": [{"source": 2405190, "target": 2411179}, {"source": 2405190, "target": 2462998}, {"source": 2405190, "target": 2484142}, {"source": 2405190, "target": 2528023}, {"source": 2405190, "target": 2528488}, {"source": 2528488, "target": 2411179}, {"source": 2528488, "target": 2462998}, {"source": 2411179, "target": 2462998}, {"source": 2411179, "target": 2484142}, {"source": 2411179, "target": 2528023}, {"source": 2528023, "target": 2462998}, {"source": 2528023, "target": 2482999}]}
|
[
2405190
] | 1 |
2,001 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Maria Franco, Vanessa Mitchell, Kimberly Taylor, Brian Sellers, Nichole Cannon, Justin Ross, Kristi Rogers, Breanna Craig, Kenneth Johnson, Russell Howell, Jody Williams
- Fiendship connections: Maria Franco to Russell Howell, Vanessa Mitchell to Kenneth Johnson, Kimberly Taylor to Russell Howell, Nichole Cannon to Russell Howell, Nichole Cannon to Justin Ross, Kristi Rogers to Russell Howell, Breanna Craig to Russell Howell, Kenneth Johnson to Russell Howell, Russell Howell to Jody Williams
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Maria Franco", "id": 3852737}, {"name": "Vanessa Mitchell", "id": 2444646}, {"name": "Kimberly Taylor", "id": 3852743}, {"name": "Brian Sellers", "id": 2485896}, {"name": "Nichole Cannon", "id": 3852744}, {"name": "Justin Ross", "id": 2480617}, {"name": "Kristi Rogers", "id": 3852747}, {"name": "Breanna Craig", "id": 3852755}, {"name": "Kenneth Johnson", "id": 3448309}, {"name": "Russell Howell", "id": 2450490}, {"name": "Jody Williams", "id": 2411516}], "links": [{"source": 3852737, "target": 2450490}, {"source": 2444646, "target": 3448309}, {"source": 3852743, "target": 2450490}, {"source": 3852744, "target": 2450490}, {"source": 3852744, "target": 2480617}, {"source": 3852747, "target": 2450490}, {"source": 3852755, "target": 2450490}, {"source": 3448309, "target": 2450490}, {"source": 2450490, "target": 2411516}]}
|
[
3852737,
2485896
] | 2 |
2,002 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Leslie Vega, Tina Martin, Tyler Conner, Terri Davis, Emma Goodman, Michelle Lin
- Fiendship connections: Leslie Vega to Tina Martin, Tina Martin to Emma Goodman, Terri Davis to Michelle Lin
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Leslie Vega", "id": 3845089}, {"name": "Tina Martin", "id": 2449573}, {"name": "Tyler Conner", "id": 5093640}, {"name": "Terri Davis", "id": 5877871}, {"name": "Emma Goodman", "id": 2535216}, {"name": "Michelle Lin", "id": 5364663}], "links": [{"source": 3845089, "target": 2449573}, {"source": 2449573, "target": 2535216}, {"source": 5877871, "target": 5364663}]}
|
[
2535216,
5093640,
5364663
] | 3 |
2,003 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Donna Cox, Lauren Benson, Lisa Fernandez, Victoria Smith, Sarah White, Sandra White, John Vaughn, Brandon Mendoza
- Fiendship connections: Donna Cox to Victoria Smith, Donna Cox to Lisa Fernandez, Lauren Benson to Lisa Fernandez, Lisa Fernandez to John Vaughn, Lisa Fernandez to Brandon Mendoza
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Donna Cox", "id": 5145378}, {"name": "Lauren Benson", "id": 5519459}, {"name": "Lisa Fernandez", "id": 5188292}, {"name": "Victoria Smith", "id": 4973380}, {"name": "Sarah White", "id": 4980368}, {"name": "Sandra White", "id": 5085367}, {"name": "John Vaughn", "id": 5533528}, {"name": "Brandon Mendoza", "id": 5533534}], "links": [{"source": 5145378, "target": 4973380}, {"source": 5145378, "target": 5188292}, {"source": 5519459, "target": 5188292}, {"source": 5188292, "target": 5533528}, {"source": 5188292, "target": 5533534}]}
|
[
5145378,
4980368,
5085367
] | 3 |
2,004 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Felicia Wade, Danielle Johnson, Kim Diaz, Stephanie Patterson
- Fiendship connections: Felicia Wade to Kim Diaz, Danielle Johnson to Stephanie Patterson, Kim Diaz to Stephanie Patterson
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Felicia Wade", "id": 1114338}, {"name": "Danielle Johnson", "id": 1111412}, {"name": "Kim Diaz", "id": 1197006}, {"name": "Stephanie Patterson", "id": 2003086}], "links": [{"source": 1114338, "target": 1197006}, {"source": 1111412, "target": 2003086}, {"source": 1197006, "target": 2003086}]}
|
[
1114338
] | 1 |
2,005 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Brenda Lee, Sarah Smith, Randall Davis, Robin Brown, Laurie Newton
- Fiendship connections: Sarah Smith to Laurie Newton, Randall Davis to Laurie Newton, Robin Brown to Laurie Newton
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Brenda Lee", "id": 1118796}, {"name": "Sarah Smith", "id": 4136268}, {"name": "Randall Davis", "id": 4136271}, {"name": "Robin Brown", "id": 2404337}, {"name": "Laurie Newton", "id": 2462835}], "links": [{"source": 4136268, "target": 2462835}, {"source": 4136271, "target": 2462835}, {"source": 2404337, "target": 2462835}]}
|
[
1118796,
2404337
] | 2 |
2,006 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Gabriel Campbell Jr., Monique Lowe, Amy Hampton, Amanda Mcconnell, Susan Pope
- Fiendship connections: Monique Lowe to Susan Pope, Amanda Mcconnell to Susan Pope
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Gabriel Campbell Jr.", "id": 68192}, {"name": "Monique Lowe", "id": 126276}, {"name": "Amy Hampton", "id": 444364}, {"name": "Amanda Mcconnell", "id": 150288}, {"name": "Susan Pope", "id": 150291}], "links": [{"source": 126276, "target": 150291}, {"source": 150288, "target": 150291}]}
|
[
68192,
150288,
444364
] | 3 |
2,007 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Kathryn Smith, Andrew Collins, Yolanda Reynolds, Mr. Manuel Brown, Charles Campbell, Hannah Williams, Patricia Gonzalez
- Fiendship connections: Kathryn Smith to Yolanda Reynolds, Andrew Collins to Yolanda Reynolds, Yolanda Reynolds to Charles Campbell, Mr. Manuel Brown to Hannah Williams
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Kathryn Smith", "id": 2493057}, {"name": "Andrew Collins", "id": 2420330}, {"name": "Yolanda Reynolds", "id": 2770703}, {"name": "Mr. Manuel Brown", "id": 1050004}, {"name": "Charles Campbell", "id": 2409589}, {"name": "Hannah Williams", "id": 832916}, {"name": "Patricia Gonzalez", "id": 2459029}], "links": [{"source": 2493057, "target": 2770703}, {"source": 2420330, "target": 2770703}, {"source": 2770703, "target": 2409589}, {"source": 1050004, "target": 832916}]}
|
[
2493057,
832916,
2459029
] | 3 |
2,008 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Hannah Roach, Christian Davis, William Hayes, Allison Blair, Vanessa Hensley, Austin Glover, Jacob Soto, Amanda Cortez
- Fiendship connections: Hannah Roach to Jacob Soto, Hannah Roach to Christian Davis, Christian Davis to Jacob Soto, Christian Davis to Allison Blair, William Hayes to Austin Glover, Allison Blair to Jacob Soto
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Hannah Roach", "id": 5038245}, {"name": "Christian Davis", "id": 5168650}, {"name": "William Hayes", "id": 1133425}, {"name": "Allison Blair", "id": 5094577}, {"name": "Vanessa Hensley", "id": 947861}, {"name": "Austin Glover", "id": 1106711}, {"name": "Jacob Soto", "id": 5021496}, {"name": "Amanda Cortez", "id": 889817}], "links": [{"source": 5038245, "target": 5021496}, {"source": 5038245, "target": 5168650}, {"source": 5168650, "target": 5021496}, {"source": 5168650, "target": 5094577}, {"source": 1133425, "target": 1106711}, {"source": 5094577, "target": 5021496}]}
|
[
5021496,
1133425,
947861,
889817
] | 4 |
2,009 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Michael Davis, William Watkins, Ryan Snyder, Kyle Smith, Cynthia Baker
- Fiendship connections: Michael Davis to Cynthia Baker, Michael Davis to Kyle Smith, William Watkins to Ryan Snyder, Kyle Smith to Cynthia Baker
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Michael Davis", "id": 2405250}, {"name": "William Watkins", "id": 5053858}, {"name": "Ryan Snyder", "id": 5924259}, {"name": "Kyle Smith", "id": 2522759}, {"name": "Cynthia Baker", "id": 2405166}], "links": [{"source": 2405250, "target": 2405166}, {"source": 2405250, "target": 2522759}, {"source": 5053858, "target": 5924259}, {"source": 2522759, "target": 2405166}]}
|
[
2405250,
5053858
] | 2 |
2,010 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: David Lambert, Austin Sherman, Courtney King, Daniel Hill, Maria Barber, Bryan Reyes
- Fiendship connections: David Lambert to Courtney King, David Lambert to Bryan Reyes, Austin Sherman to Maria Barber, Daniel Hill to Maria Barber
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "David Lambert", "id": 1592978}, {"name": "Austin Sherman", "id": 2428885}, {"name": "Courtney King", "id": 867740}, {"name": "Daniel Hill", "id": 2446813}, {"name": "Maria Barber", "id": 3391422}, {"name": "Bryan Reyes", "id": 2318719}], "links": [{"source": 1592978, "target": 867740}, {"source": 1592978, "target": 2318719}, {"source": 2428885, "target": 3391422}, {"source": 2446813, "target": 3391422}]}
|
[
1592978,
2446813
] | 2 |
2,011 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Jeremy Casey, Amanda Sanchez, Shawn Edwards, Joseph Hernandez, Amy Joseph, Ashley Greer, Jessica Guerrero, Wanda Robinson, Tiffany Gomez, Tiffany Miller, Eugene Holmes
- Fiendship connections: Jeremy Casey to Shawn Edwards, Jeremy Casey to Amanda Sanchez, Jeremy Casey to Wanda Robinson, Amanda Sanchez to Tiffany Miller, Amanda Sanchez to Eugene Holmes, Shawn Edwards to Tiffany Gomez, Joseph Hernandez to Tiffany Gomez, Joseph Hernandez to Ashley Greer, Jessica Guerrero to Tiffany Gomez, Wanda Robinson to Tiffany Miller, Tiffany Miller to Eugene Holmes
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Jeremy Casey", "id": 28583}, {"name": "Amanda Sanchez", "id": 18408}, {"name": "Shawn Edwards", "id": 11403}, {"name": "Joseph Hernandez", "id": 11244}, {"name": "Amy Joseph", "id": 151949}, {"name": "Ashley Greer", "id": 11248}, {"name": "Jessica Guerrero", "id": 570097}, {"name": "Wanda Robinson", "id": 66449}, {"name": "Tiffany Gomez", "id": 5939}, {"name": "Tiffany Miller", "id": 18356}, {"name": "Eugene Holmes", "id": 28735}], "links": [{"source": 28583, "target": 11403}, {"source": 28583, "target": 18408}, {"source": 28583, "target": 66449}, {"source": 18408, "target": 18356}, {"source": 18408, "target": 28735}, {"source": 11403, "target": 5939}, {"source": 11244, "target": 5939}, {"source": 11244, "target": 11248}, {"source": 570097, "target": 5939}, {"source": 66449, "target": 18356}, {"source": 18356, "target": 28735}]}
|
[
28583,
151949
] | 2 |
2,012 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Dana Wallace, Taylor Brooks, Bonnie Morales, Matthew Macdonald
- Fiendship connections: Dana Wallace to Bonnie Morales, Taylor Brooks to Matthew Macdonald, Bonnie Morales to Matthew Macdonald
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Dana Wallace", "id": 56962}, {"name": "Taylor Brooks", "id": 385643}, {"name": "Bonnie Morales", "id": 53885}, {"name": "Matthew Macdonald", "id": 34527}], "links": [{"source": 56962, "target": 53885}, {"source": 385643, "target": 34527}, {"source": 53885, "target": 34527}]}
|
[
56962
] | 1 |
2,013 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Tammy Murphy, Gregory Cooper, Sierra Webb, Joshua Jackson, Melissa Benson, Michelle Guzman
- Fiendship connections: Tammy Murphy to Joshua Jackson, Sierra Webb to Joshua Jackson
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Tammy Murphy", "id": 703112}, {"name": "Gregory Cooper", "id": 68969}, {"name": "Sierra Webb", "id": 62536}, {"name": "Joshua Jackson", "id": 11218}, {"name": "Melissa Benson", "id": 152118}, {"name": "Michelle Guzman", "id": 155261}], "links": [{"source": 703112, "target": 11218}, {"source": 62536, "target": 11218}]}
|
[
703112,
68969,
152118,
155261
] | 4 |
2,014 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Olivia Sharp, Victoria Morales, Christopher Chambers, Allison Powell
- Fiendship connections: Olivia Sharp to Allison Powell, Victoria Morales to Allison Powell, Christopher Chambers to Allison Powell
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Olivia Sharp", "id": 776232}, {"name": "Victoria Morales", "id": 1732136}, {"name": "Christopher Chambers", "id": 1011125}, {"name": "Allison Powell", "id": 973031}], "links": [{"source": 776232, "target": 973031}, {"source": 1732136, "target": 973031}, {"source": 1011125, "target": 973031}]}
|
[
776232
] | 1 |
2,015 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Sarah Thompson, Scott Rivers, Charles Frank, Alison Moran, Carolyn Bishop, Amanda Green, Mary Clay, Tracy Martin MD, Susan Powers
- Fiendship connections: Sarah Thompson to Carolyn Bishop, Charles Frank to Carolyn Bishop, Alison Moran to Mary Clay, Alison Moran to Carolyn Bishop, Carolyn Bishop to Mary Clay, Amanda Green to Mary Clay
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Sarah Thompson", "id": 2486786}, {"name": "Scott Rivers", "id": 2426760}, {"name": "Charles Frank", "id": 2499210}, {"name": "Alison Moran", "id": 2454992}, {"name": "Carolyn Bishop", "id": 3199185}, {"name": "Amanda Green", "id": 2420311}, {"name": "Mary Clay", "id": 2501081}, {"name": "Tracy Martin MD", "id": 2420925}, {"name": "Susan Powers", "id": 2455359}], "links": [{"source": 2486786, "target": 3199185}, {"source": 2499210, "target": 3199185}, {"source": 2454992, "target": 2501081}, {"source": 2454992, "target": 3199185}, {"source": 3199185, "target": 2501081}, {"source": 2420311, "target": 2501081}]}
|
[
2486786,
2426760,
2420925,
2455359
] | 4 |
2,016 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Deborah Calderon, Brady Smith, Heather Dean, Juan Smith, Eric Bush, Jonathan Santiago, Aaron Dean, Gloria Vaughan, Jorge Parker, Wanda Hamilton, Jade Morgan, Margaret Harris
- Fiendship connections: Deborah Calderon to Jonathan Santiago, Brady Smith to Heather Dean, Brady Smith to Juan Smith, Juan Smith to Gloria Vaughan, Juan Smith to Eric Bush, Eric Bush to Gloria Vaughan, Aaron Dean to Gloria Vaughan
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Deborah Calderon", "id": 369826}, {"name": "Brady Smith", "id": 3552418}, {"name": "Heather Dean", "id": 2478723}, {"name": "Juan Smith", "id": 2493127}, {"name": "Eric Bush", "id": 3255530}, {"name": "Jonathan Santiago", "id": 81806}, {"name": "Aaron Dean", "id": 2466959}, {"name": "Gloria Vaughan", "id": 2424918}, {"name": "Jorge Parker", "id": 2491766}, {"name": "Wanda Hamilton", "id": 2481046}, {"name": "Jade Morgan", "id": 2473691}, {"name": "Margaret Harris", "id": 2459007}], "links": [{"source": 369826, "target": 81806}, {"source": 3552418, "target": 2478723}, {"source": 3552418, "target": 2493127}, {"source": 2493127, "target": 2424918}, {"source": 2493127, "target": 3255530}, {"source": 3255530, "target": 2424918}, {"source": 2466959, "target": 2424918}]}
|
[
369826,
3552418,
2491766,
2481046,
2473691,
2459007
] | 6 |
2,017 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Matthew Dickson, Sherri Mitchell, Gabriel Sanchez, Christopher Patel
- Fiendship connections: Matthew Dickson to Christopher Patel, Sherri Mitchell to Christopher Patel, Gabriel Sanchez to Christopher Patel
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Matthew Dickson", "id": 2418248}, {"name": "Sherri Mitchell", "id": 2422370}, {"name": "Gabriel Sanchez", "id": 2445360}, {"name": "Christopher Patel", "id": 3015951}], "links": [{"source": 2418248, "target": 3015951}, {"source": 2422370, "target": 3015951}, {"source": 2445360, "target": 3015951}]}
|
[
2418248
] | 1 |
2,018 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Connor Lutz, Karen Mays, Dawn Massey, Samantha Phillips, Heidi Walker, Andre Chung, Kurt Daniel, Mark Davis, Brooke Chavez
- Fiendship connections: Connor Lutz to Brooke Chavez, Connor Lutz to Karen Mays, Connor Lutz to Andre Chung, Karen Mays to Brooke Chavez, Karen Mays to Heidi Walker, Karen Mays to Andre Chung, Heidi Walker to Brooke Chavez, Heidi Walker to Andre Chung, Andre Chung to Brooke Chavez
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Connor Lutz", "id": 2460384}, {"name": "Karen Mays", "id": 2476294}, {"name": "Dawn Massey", "id": 2461737}, {"name": "Samantha Phillips", "id": 2622047}, {"name": "Heidi Walker", "id": 2471663}, {"name": "Andre Chung", "id": 3185999}, {"name": "Kurt Daniel", "id": 2408408}, {"name": "Mark Davis", "id": 2408252}, {"name": "Brooke Chavez", "id": 2422367}], "links": [{"source": 2460384, "target": 2422367}, {"source": 2460384, "target": 2476294}, {"source": 2460384, "target": 3185999}, {"source": 2476294, "target": 2422367}, {"source": 2476294, "target": 2471663}, {"source": 2476294, "target": 3185999}, {"source": 2471663, "target": 2422367}, {"source": 2471663, "target": 3185999}, {"source": 3185999, "target": 2422367}]}
|
[
2460384,
2461737,
2622047,
2408408,
2408252
] | 5 |
2,019 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Haley Booker, Sara Long, Clinton Singleton MD, Kathleen Taylor, Amber Chandler, Paul Murphy, Tyler Bryant
- Fiendship connections: Sara Long to Amber Chandler, Kathleen Taylor to Amber Chandler
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Haley Booker", "id": 4994722}, {"name": "Sara Long", "id": 5096676}, {"name": "Clinton Singleton MD", "id": 6015397}, {"name": "Kathleen Taylor", "id": 4960743}, {"name": "Amber Chandler", "id": 5532040}, {"name": "Paul Murphy", "id": 4949974}, {"name": "Tyler Bryant", "id": 4977886}], "links": [{"source": 5096676, "target": 5532040}, {"source": 4960743, "target": 5532040}]}
|
[
4994722,
5532040,
6015397,
4949974,
4977886
] | 5 |
2,020 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Matthew Cole, Ellen Scott, Ashley Garcia, Maria Silva, Kevin Martinez, Morgan Sullivan, Cody Graham, Stephanie Sullivan, John Smith, Damon Moreno
- Fiendship connections: Matthew Cole to Ashley Garcia, Matthew Cole to Damon Moreno, Matthew Cole to Morgan Sullivan, Ellen Scott to Stephanie Sullivan, Ashley Garcia to Damon Moreno, Ashley Garcia to Morgan Sullivan, Stephanie Sullivan to John Smith
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Matthew Cole", "id": 48129}, {"name": "Ellen Scott", "id": 2281377}, {"name": "Ashley Garcia", "id": 45160}, {"name": "Maria Silva", "id": 1693482}, {"name": "Kevin Martinez", "id": 87791}, {"name": "Morgan Sullivan", "id": 403890}, {"name": "Cody Graham", "id": 1808372}, {"name": "Stephanie Sullivan", "id": 1610042}, {"name": "John Smith", "id": 1439259}, {"name": "Damon Moreno", "id": 280060}], "links": [{"source": 48129, "target": 45160}, {"source": 48129, "target": 280060}, {"source": 48129, "target": 403890}, {"source": 2281377, "target": 1610042}, {"source": 45160, "target": 280060}, {"source": 45160, "target": 403890}, {"source": 1610042, "target": 1439259}]}
|
[
45160,
2281377,
1693482,
87791,
1808372
] | 5 |
2,021 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Haley Francis, Joanne Campbell, Samuel Williams, Deanna Mccoy MD, Alicia Phillips, Elizabeth Mays, Elizabeth Henry, Stephanie Price, Chad Herrera, Sandra Smith, Jennifer Foster, Teresa Berg
- Fiendship connections: Haley Francis to Stephanie Price, Haley Francis to Elizabeth Mays, Haley Francis to Samuel Williams, Joanne Campbell to Deanna Mccoy MD, Deanna Mccoy MD to Elizabeth Henry, Alicia Phillips to Chad Herrera, Elizabeth Henry to Sandra Smith, Chad Herrera to Jennifer Foster
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Haley Francis", "id": 1928610}, {"name": "Joanne Campbell", "id": 836899}, {"name": "Samuel Williams", "id": 2351046}, {"name": "Deanna Mccoy MD", "id": 779560}, {"name": "Alicia Phillips", "id": 2439849}, {"name": "Elizabeth Mays", "id": 1865512}, {"name": "Elizabeth Henry", "id": 1027788}, {"name": "Stephanie Price", "id": 1628204}, {"name": "Chad Herrera", "id": 2482479}, {"name": "Sandra Smith", "id": 1364337}, {"name": "Jennifer Foster", "id": 4642227}, {"name": "Teresa Berg", "id": 2417653}], "links": [{"source": 1928610, "target": 1628204}, {"source": 1928610, "target": 1865512}, {"source": 1928610, "target": 2351046}, {"source": 836899, "target": 779560}, {"source": 779560, "target": 1027788}, {"source": 2439849, "target": 2482479}, {"source": 1027788, "target": 1364337}, {"source": 2482479, "target": 4642227}]}
|
[
1865512,
779560,
2439849,
2417653
] | 4 |
2,022 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Christine Gomez, Brian Clark, Alejandro Franklin, Kimberly Sutton, Vicki Pratt
- Fiendship connections: Christine Gomez to Vicki Pratt, Christine Gomez to Alejandro Franklin, Brian Clark to Kimberly Sutton
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Christine Gomez", "id": 5674790}, {"name": "Brian Clark", "id": 1406157}, {"name": "Alejandro Franklin", "id": 5126671}, {"name": "Kimberly Sutton", "id": 1739217}, {"name": "Vicki Pratt", "id": 5116571}], "links": [{"source": 5674790, "target": 5116571}, {"source": 5674790, "target": 5126671}, {"source": 1406157, "target": 1739217}]}
|
[
5116571,
1739217
] | 2 |
2,023 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Matthew Garcia, Nicole Preston, Gavin Morris, Rhonda Huber, Jessica Taylor
- Fiendship connections: Matthew Garcia to Jessica Taylor, Gavin Morris to Jessica Taylor, Gavin Morris to Rhonda Huber, Rhonda Huber to Jessica Taylor
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Matthew Garcia", "id": 5911264}, {"name": "Nicole Preston", "id": 4960341}, {"name": "Gavin Morris", "id": 4932059}, {"name": "Rhonda Huber", "id": 4940699}, {"name": "Jessica Taylor", "id": 5532574}], "links": [{"source": 5911264, "target": 5532574}, {"source": 4932059, "target": 5532574}, {"source": 4932059, "target": 4940699}, {"source": 4940699, "target": 5532574}]}
|
[
5911264,
4960341
] | 2 |
2,024 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Christy Sanders, Isaiah Roberts, Theodore Best, Karen Small, Richard Larson, Mrs. Lori Clark, Frank Conway, Mr. Ernest Hudson, Emily Reynolds, Maria Tucker, Richard Peters, Erica Rivas
- Fiendship connections: Christy Sanders to Richard Larson, Christy Sanders to Isaiah Roberts, Isaiah Roberts to Mrs. Lori Clark, Isaiah Roberts to Richard Larson, Theodore Best to Erica Rivas, Karen Small to Frank Conway, Karen Small to Mrs. Lori Clark, Frank Conway to Mr. Ernest Hudson, Mr. Ernest Hudson to Emily Reynolds, Emily Reynolds to Maria Tucker, Maria Tucker to Richard Peters
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Christy Sanders", "id": 1061604}, {"name": "Isaiah Roberts", "id": 2001060}, {"name": "Theodore Best", "id": 1447313}, {"name": "Karen Small", "id": 1387538}, {"name": "Richard Larson", "id": 1836947}, {"name": "Mrs. Lori Clark", "id": 1634612}, {"name": "Frank Conway", "id": 1631506}, {"name": "Mr. Ernest Hudson", "id": 1664049}, {"name": "Emily Reynolds", "id": 1388945}, {"name": "Maria Tucker", "id": 1296306}, {"name": "Richard Peters", "id": 1882386}, {"name": "Erica Rivas", "id": 2235931}], "links": [{"source": 1061604, "target": 1836947}, {"source": 1061604, "target": 2001060}, {"source": 2001060, "target": 1634612}, {"source": 2001060, "target": 1836947}, {"source": 1447313, "target": 2235931}, {"source": 1387538, "target": 1631506}, {"source": 1387538, "target": 1634612}, {"source": 1631506, "target": 1664049}, {"source": 1664049, "target": 1388945}, {"source": 1388945, "target": 1296306}, {"source": 1296306, "target": 1882386}]}
|
[
2001060,
1447313
] | 2 |
2,025 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Sheila Rodriguez, Maria Johnson, Yvonne Hale, Thomas Hawkins, Tara Gray, Martin Chavez, Melody Shah, Chad Ramirez, Martin Pham, Laura Palmer
- Fiendship connections: Sheila Rodriguez to Laura Palmer, Thomas Hawkins to Martin Pham, Martin Chavez to Laura Palmer, Melody Shah to Laura Palmer, Chad Ramirez to Laura Palmer
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Sheila Rodriguez", "id": 2428096}, {"name": "Maria Johnson", "id": 2405634}, {"name": "Yvonne Hale", "id": 2477608}, {"name": "Thomas Hawkins", "id": 4758795}, {"name": "Tara Gray", "id": 2481901}, {"name": "Martin Chavez", "id": 2428752}, {"name": "Melody Shah", "id": 2457552}, {"name": "Chad Ramirez", "id": 2497008}, {"name": "Martin Pham", "id": 2491709}, {"name": "Laura Palmer", "id": 2777886}], "links": [{"source": 2428096, "target": 2777886}, {"source": 4758795, "target": 2491709}, {"source": 2428752, "target": 2777886}, {"source": 2457552, "target": 2777886}, {"source": 2497008, "target": 2777886}]}
|
[
2428096,
2405634,
2477608,
4758795,
2481901
] | 5 |
2,026 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Dr. Katrina Anderson MD, Barbara Perkins, John Young, Tony Proctor, Crystal Jackson, Lisa Villarreal, Nicole Cross, Kenneth Wiggins, Darlene Silva, Zachary Wolf, Carlos Jones, Rebecca Cooke, Kimberly Peterson
- Fiendship connections: Dr. Katrina Anderson MD to Rebecca Cooke, Tony Proctor to Rebecca Cooke, Crystal Jackson to Darlene Silva, Nicole Cross to Rebecca Cooke, Kenneth Wiggins to Rebecca Cooke, Darlene Silva to Zachary Wolf, Darlene Silva to Kimberly Peterson, Zachary Wolf to Kimberly Peterson, Carlos Jones to Rebecca Cooke
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Dr. Katrina Anderson MD", "id": 1800544}, {"name": "Barbara Perkins", "id": 2434401}, {"name": "John Young", "id": 2464327}, {"name": "Tony Proctor", "id": 1041546}, {"name": "Crystal Jackson", "id": 4186284}, {"name": "Lisa Villarreal", "id": 2422381}, {"name": "Nicole Cross", "id": 1243927}, {"name": "Kenneth Wiggins", "id": 803922}, {"name": "Darlene Silva", "id": 2463862}, {"name": "Zachary Wolf", "id": 2470391}, {"name": "Carlos Jones", "id": 1290907}, {"name": "Rebecca Cooke", "id": 1264540}, {"name": "Kimberly Peterson", "id": 3771582}], "links": [{"source": 1800544, "target": 1264540}, {"source": 1041546, "target": 1264540}, {"source": 4186284, "target": 2463862}, {"source": 1243927, "target": 1264540}, {"source": 803922, "target": 1264540}, {"source": 2463862, "target": 2470391}, {"source": 2463862, "target": 3771582}, {"source": 2470391, "target": 3771582}, {"source": 1290907, "target": 1264540}]}
|
[
1800544,
2434401,
2464327,
3771582,
2422381
] | 5 |
2,027 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Michelle Olson, Jeremy Lee, Michael Gray, Mary Williams MD
- Fiendship connections: Michelle Olson to Jeremy Lee, Michelle Olson to Mary Williams MD, Michelle Olson to Michael Gray, Jeremy Lee to Mary Williams MD, Jeremy Lee to Michael Gray, Michael Gray to Mary Williams MD
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Michelle Olson", "id": 1401066}, {"name": "Jeremy Lee", "id": 1006011}, {"name": "Michael Gray", "id": 1907422}, {"name": "Mary Williams MD", "id": 1585166}], "links": [{"source": 1401066, "target": 1006011}, {"source": 1401066, "target": 1585166}, {"source": 1401066, "target": 1907422}, {"source": 1006011, "target": 1585166}, {"source": 1006011, "target": 1907422}, {"source": 1907422, "target": 1585166}]}
|
[
1401066
] | 1 |
2,028 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: James Ramos, Kenneth Knight, Cynthia Patton, Christina Blair, Michael Lamb, Michael Espinoza, Timothy Graham
- Fiendship connections: James Ramos to Timothy Graham, Kenneth Knight to Timothy Graham, Cynthia Patton to Timothy Graham, Christina Blair to Timothy Graham, Michael Lamb to Timothy Graham, Michael Espinoza to Timothy Graham
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "James Ramos", "id": 2620739}, {"name": "Kenneth Knight", "id": 3849648}, {"name": "Cynthia Patton", "id": 3849650}, {"name": "Christina Blair", "id": 2404084}, {"name": "Michael Lamb", "id": 3849653}, {"name": "Michael Espinoza", "id": 3849654}, {"name": "Timothy Graham", "id": 2450358}], "links": [{"source": 2620739, "target": 2450358}, {"source": 3849648, "target": 2450358}, {"source": 3849650, "target": 2450358}, {"source": 2404084, "target": 2450358}, {"source": 3849653, "target": 2450358}, {"source": 3849654, "target": 2450358}]}
|
[
2620739
] | 1 |
2,029 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: John Miller, Peter Smith, Ryan Bates, Hannah Robertson, Jessica Kim
- Fiendship connections: John Miller to Hannah Robertson, Peter Smith to Ryan Bates, Hannah Robertson to Jessica Kim
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "John Miller", "id": 56963}, {"name": "Peter Smith", "id": 4696152}, {"name": "Ryan Bates", "id": 2487034}, {"name": "Hannah Robertson", "id": 436925}, {"name": "Jessica Kim", "id": 287}], "links": [{"source": 56963, "target": 436925}, {"source": 4696152, "target": 2487034}, {"source": 436925, "target": 287}]}
|
[
56963,
4696152
] | 2 |
2,030 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Amy Gonzales, Michael Butler, Jason Rodriguez, Jonathan Dillon, Tiffany Cook, Robert Roberts
- Fiendship connections: Michael Butler to Robert Roberts, Jason Rodriguez to Tiffany Cook, Jonathan Dillon to Robert Roberts
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Amy Gonzales", "id": 2464771}, {"name": "Michael Butler", "id": 2475140}, {"name": "Jason Rodriguez", "id": 2406310}, {"name": "Jonathan Dillon", "id": 2490599}, {"name": "Tiffany Cook", "id": 2446984}, {"name": "Robert Roberts", "id": 4450633}], "links": [{"source": 2475140, "target": 4450633}, {"source": 2406310, "target": 2446984}, {"source": 2490599, "target": 4450633}]}
|
[
2464771,
4450633,
2446984
] | 3 |
2,031 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Sarah Nelson, Samantha Smith, Christina Williams, Thomas Hickman, Christina Powers
- Fiendship connections: Sarah Nelson to Christina Powers, Sarah Nelson to Samantha Smith, Christina Williams to Christina Powers, Thomas Hickman to Christina Powers
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Sarah Nelson", "id": 2458594}, {"name": "Samantha Smith", "id": 2622402}, {"name": "Christina Williams", "id": 2414383}, {"name": "Thomas Hickman", "id": 3666713}, {"name": "Christina Powers", "id": 2441691}], "links": [{"source": 2458594, "target": 2441691}, {"source": 2458594, "target": 2622402}, {"source": 2414383, "target": 2441691}, {"source": 3666713, "target": 2441691}]}
|
[
2622402
] | 1 |
2,032 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Stephen Burton, Jacob Harris, Derek Ramos, Susan Coleman
- Fiendship connections: Stephen Burton to Jacob Harris, Stephen Burton to Derek Ramos
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Stephen Burton", "id": 2772961}, {"name": "Jacob Harris", "id": 2410481}, {"name": "Derek Ramos", "id": 2415446}, {"name": "Susan Coleman", "id": 2500005}], "links": [{"source": 2772961, "target": 2410481}, {"source": 2772961, "target": 2415446}]}
|
[
2772961,
2500005
] | 2 |
2,033 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Timothy Ferguson, Melissa Brown, Jamie Jensen, Jason Scott, Lori Clark, Jeremy Mendez, Cheryl Barry, Shannon Stewart, Sean Hernandez, Caroline Johnson, Janet Robinson, Cindy Simon, Brandon Maynard
- Fiendship connections: Timothy Ferguson to Jamie Jensen, Melissa Brown to Janet Robinson, Jamie Jensen to Cheryl Barry, Jamie Jensen to Lori Clark, Jeremy Mendez to Shannon Stewart, Jeremy Mendez to Janet Robinson, Sean Hernandez to Cindy Simon, Janet Robinson to Brandon Maynard
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Timothy Ferguson", "id": 4124610}, {"name": "Melissa Brown", "id": 4610210}, {"name": "Jamie Jensen", "id": 2461826}, {"name": "Jason Scott", "id": 2479524}, {"name": "Lori Clark", "id": 4124611}, {"name": "Jeremy Mendez", "id": 2425932}, {"name": "Cheryl Barry", "id": 2404621}, {"name": "Shannon Stewart", "id": 2431437}, {"name": "Sean Hernandez", "id": 12981}, {"name": "Caroline Johnson", "id": 2426359}, {"name": "Janet Robinson", "id": 2482904}, {"name": "Cindy Simon", "id": 433018}, {"name": "Brandon Maynard", "id": 2422110}], "links": [{"source": 4124610, "target": 2461826}, {"source": 4610210, "target": 2482904}, {"source": 2461826, "target": 2404621}, {"source": 2461826, "target": 4124611}, {"source": 2425932, "target": 2431437}, {"source": 2425932, "target": 2482904}, {"source": 12981, "target": 433018}, {"source": 2482904, "target": 2422110}]}
|
[
4124610,
4610210,
2479524,
433018,
2426359
] | 5 |
2,034 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Brittany Nichols, Ryan Caldwell, Jay Jenkins, Karen Griffith, Anne Lawson, Michael Kidd, Ian Marsh, Robert Mcconnell, Melissa Farley
- Fiendship connections: Brittany Nichols to Anne Lawson, Brittany Nichols to Ian Marsh, Brittany Nichols to Jay Jenkins, Anne Lawson to Ian Marsh, Michael Kidd to Melissa Farley, Ian Marsh to Robert Mcconnell
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Brittany Nichols", "id": 2455458}, {"name": "Ryan Caldwell", "id": 126884}, {"name": "Jay Jenkins", "id": 3939912}, {"name": "Karen Griffith", "id": 2455433}, {"name": "Anne Lawson", "id": 2424460}, {"name": "Michael Kidd", "id": 757074}, {"name": "Ian Marsh", "id": 2545043}, {"name": "Robert Mcconnell", "id": 2455382}, {"name": "Melissa Farley", "id": 2039}], "links": [{"source": 2455458, "target": 2424460}, {"source": 2455458, "target": 2545043}, {"source": 2455458, "target": 3939912}, {"source": 2424460, "target": 2545043}, {"source": 757074, "target": 2039}, {"source": 2545043, "target": 2455382}]}
|
[
2455458,
126884,
2455433,
757074
] | 4 |
2,035 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Jessica Manning, Robert Peterson, Caleb Phillips, Cheryl Mitchell, Evan Barnes, Ryan Evans
- Fiendship connections: Jessica Manning to Caleb Phillips, Robert Peterson to Caleb Phillips, Caleb Phillips to Cheryl Mitchell, Evan Barnes to Ryan Evans
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Jessica Manning", "id": 1165985}, {"name": "Robert Peterson", "id": 1878470}, {"name": "Caleb Phillips", "id": 1943591}, {"name": "Cheryl Mitchell", "id": 952518}, {"name": "Evan Barnes", "id": 1339657}, {"name": "Ryan Evans", "id": 1530619}], "links": [{"source": 1165985, "target": 1943591}, {"source": 1878470, "target": 1943591}, {"source": 1943591, "target": 952518}, {"source": 1339657, "target": 1530619}]}
|
[
1165985,
1339657
] | 2 |
2,036 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: William Burns, Brad Wagner DVM, Amy Ramirez, Deborah Harris, Christopher Walker, Jessica Melendez, Jennifer Spears
- Fiendship connections: William Burns to Jessica Melendez, Brad Wagner DVM to Christopher Walker, Deborah Harris to Christopher Walker, Christopher Walker to Jennifer Spears, Christopher Walker to Jessica Melendez
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "William Burns", "id": 1029922}, {"name": "Brad Wagner DVM", "id": 840964}, {"name": "Amy Ramirez", "id": 1033157}, {"name": "Deborah Harris", "id": 1360038}, {"name": "Christopher Walker", "id": 1677926}, {"name": "Jessica Melendez", "id": 1568910}, {"name": "Jennifer Spears", "id": 990035}], "links": [{"source": 1029922, "target": 1568910}, {"source": 840964, "target": 1677926}, {"source": 1360038, "target": 1677926}, {"source": 1677926, "target": 990035}, {"source": 1677926, "target": 1568910}]}
|
[
1029922,
1033157
] | 2 |
2,037 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Leslie Foster, Jenna Phillips, Joshua Gray, Ryan Huff
- Fiendship connections: Joshua Gray to Ryan Huff
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Leslie Foster", "id": 2422016}, {"name": "Jenna Phillips", "id": 2427825}, {"name": "Joshua Gray", "id": 4870339}, {"name": "Ryan Huff", "id": 2499222}], "links": [{"source": 4870339, "target": 2499222}]}
|
[
2422016,
2427825,
4870339
] | 3 |
2,038 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Nicholas Ruiz, Brandon Oliver, Anthony Johnson, Dean Wilson
- Fiendship connections: Nicholas Ruiz to Dean Wilson, Anthony Johnson to Dean Wilson
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Nicholas Ruiz", "id": 5457128}, {"name": "Brandon Oliver", "id": 4931855}, {"name": "Anthony Johnson", "id": 5457032}, {"name": "Dean Wilson", "id": 5073255}], "links": [{"source": 5457128, "target": 5073255}, {"source": 5457032, "target": 5073255}]}
|
[
5457128,
4931855
] | 2 |
2,039 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Andrew Marshall, Heidi Irwin, Antonio Marshall, Joshua Fox, Christina Dixon, David Rose, Candace Joyce, Rachel Collins
- Fiendship connections: Andrew Marshall to Candace Joyce, Andrew Marshall to Joshua Fox, Andrew Marshall to Heidi Irwin, Antonio Marshall to Candace Joyce
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Andrew Marshall", "id": 2467754}, {"name": "Heidi Irwin", "id": 4255850}, {"name": "Antonio Marshall", "id": 2482795}, {"name": "Joshua Fox", "id": 3812909}, {"name": "Christina Dixon", "id": 2459155}, {"name": "David Rose", "id": 2474583}, {"name": "Candace Joyce", "id": 2988828}, {"name": "Rachel Collins", "id": 2463711}], "links": [{"source": 2467754, "target": 2988828}, {"source": 2467754, "target": 3812909}, {"source": 2467754, "target": 4255850}, {"source": 2482795, "target": 2988828}]}
|
[
2467754,
2459155,
2474583,
2463711
] | 4 |
2,040 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Scott Stevenson, Michael Butler, Michelle Hernandez, Dylan Singleton
- Fiendship connections: Scott Stevenson to Dylan Singleton, Scott Stevenson to Michael Butler
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Scott Stevenson", "id": 4943096}, {"name": "Michael Butler", "id": 5757425}, {"name": "Michelle Hernandez", "id": 5011572}, {"name": "Dylan Singleton", "id": 5160367}], "links": [{"source": 4943096, "target": 5160367}, {"source": 4943096, "target": 5757425}]}
|
[
4943096,
5011572
] | 2 |
2,041 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Janice Berger, George Thompson, Earl James, Michael Randolph, Bradley Smith, Erika Hartman
- Fiendship connections: Janice Berger to George Thompson, Janice Berger to Bradley Smith, George Thompson to Michael Randolph, Earl James to Bradley Smith, Bradley Smith to Erika Hartman
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Janice Berger", "id": 956295}, {"name": "George Thompson", "id": 1233613}, {"name": "Earl James", "id": 1090094}, {"name": "Michael Randolph", "id": 811185}, {"name": "Bradley Smith", "id": 1100633}, {"name": "Erika Hartman", "id": 1805471}], "links": [{"source": 956295, "target": 1233613}, {"source": 956295, "target": 1100633}, {"source": 1233613, "target": 811185}, {"source": 1090094, "target": 1100633}, {"source": 1100633, "target": 1805471}]}
|
[
956295
] | 1 |
2,042 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Christina Rivera, Christopher Smith, Cynthia Alexander, Elaine Thornton, Allison Williams, Jeremy Ward, Billy King, Brenda Hensley, Courtney Lewis, Charlotte Rogers, Anne Miller, Destiny Francis
- Fiendship connections: Christina Rivera to Destiny Francis, Christopher Smith to Destiny Francis, Cynthia Alexander to Destiny Francis, Elaine Thornton to Destiny Francis, Allison Williams to Destiny Francis, Allison Williams to Jeremy Ward, Jeremy Ward to Charlotte Rogers, Billy King to Anne Miller, Courtney Lewis to Destiny Francis, Charlotte Rogers to Anne Miller
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Christina Rivera", "id": 1224770}, {"name": "Christopher Smith", "id": 1224774}, {"name": "Cynthia Alexander", "id": 776038}, {"name": "Elaine Thornton", "id": 1132392}, {"name": "Allison Williams", "id": 936262}, {"name": "Jeremy Ward", "id": 1092279}, {"name": "Billy King", "id": 1108370}, {"name": "Brenda Hensley", "id": 2001462}, {"name": "Courtney Lewis", "id": 973750}, {"name": "Charlotte Rogers", "id": 983225}, {"name": "Anne Miller", "id": 998939}, {"name": "Destiny Francis", "id": 807838}], "links": [{"source": 1224770, "target": 807838}, {"source": 1224774, "target": 807838}, {"source": 776038, "target": 807838}, {"source": 1132392, "target": 807838}, {"source": 936262, "target": 807838}, {"source": 936262, "target": 1092279}, {"source": 1092279, "target": 983225}, {"source": 1108370, "target": 998939}, {"source": 973750, "target": 807838}, {"source": 983225, "target": 998939}]}
|
[
1224770,
2001462
] | 2 |
2,043 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Paula Johnson, Joel Myers, Andrea Smith, Sandra Rivers, Joseph Gardner
- Fiendship connections: Paula Johnson to Joel Myers, Joel Myers to Joseph Gardner, Joel Myers to Sandra Rivers, Joel Myers to Andrea Smith
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Paula Johnson", "id": 359151}, {"name": "Joel Myers", "id": 104592}, {"name": "Andrea Smith", "id": 359412}, {"name": "Sandra Rivers", "id": 359259}, {"name": "Joseph Gardner", "id": 359103}], "links": [{"source": 359151, "target": 104592}, {"source": 104592, "target": 359103}, {"source": 104592, "target": 359259}, {"source": 104592, "target": 359412}]}
|
[
359151
] | 1 |
2,044 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Crystal Hudson, Melanie Reed, Samantha Jenkins, Phillip Gonzalez, Jennifer Barnes, Carlos Vargas, Melissa David, Renee Gonzales
- Fiendship connections: Crystal Hudson to Phillip Gonzalez, Melanie Reed to Phillip Gonzalez, Samantha Jenkins to Phillip Gonzalez, Phillip Gonzalez to Carlos Vargas, Phillip Gonzalez to Melissa David, Phillip Gonzalez to Renee Gonzales
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Crystal Hudson", "id": 4734468}, {"name": "Melanie Reed", "id": 2404679}, {"name": "Samantha Jenkins", "id": 2453118}, {"name": "Phillip Gonzalez", "id": 2490099}, {"name": "Jennifer Barnes", "id": 2485336}, {"name": "Carlos Vargas", "id": 4734461}, {"name": "Melissa David", "id": 4734462}, {"name": "Renee Gonzales", "id": 4734463}], "links": [{"source": 4734468, "target": 2490099}, {"source": 2404679, "target": 2490099}, {"source": 2453118, "target": 2490099}, {"source": 2490099, "target": 4734461}, {"source": 2490099, "target": 4734462}, {"source": 2490099, "target": 4734463}]}
|
[
4734468,
2485336
] | 2 |
2,045 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Melissa Brown, Noah Hansen, Jeremy Mendez, Heidi Smith, Janet Robinson, Brandon Maynard
- Fiendship connections: Melissa Brown to Janet Robinson, Noah Hansen to Heidi Smith, Jeremy Mendez to Janet Robinson, Janet Robinson to Brandon Maynard
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Melissa Brown", "id": 4610210}, {"name": "Noah Hansen", "id": 1858885}, {"name": "Jeremy Mendez", "id": 2425932}, {"name": "Heidi Smith", "id": 1469295}, {"name": "Janet Robinson", "id": 2482904}, {"name": "Brandon Maynard", "id": 2422110}], "links": [{"source": 4610210, "target": 2482904}, {"source": 1858885, "target": 1469295}, {"source": 2425932, "target": 2482904}, {"source": 2482904, "target": 2422110}]}
|
[
2482904,
1858885
] | 2 |
2,046 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Matthew Smith, Randy Reynolds, Lisa Williamson, Sharon Clark, Nicole Martinez, Timothy Clayton, Richard Day, Michael Jones
- Fiendship connections: Matthew Smith to Sharon Clark, Randy Reynolds to Lisa Williamson, Randy Reynolds to Sharon Clark, Sharon Clark to Nicole Martinez, Sharon Clark to Timothy Clayton, Sharon Clark to Richard Day, Sharon Clark to Michael Jones
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Matthew Smith", "id": 3300608}, {"name": "Randy Reynolds", "id": 2404047}, {"name": "Lisa Williamson", "id": 2448340}, {"name": "Sharon Clark", "id": 2448375}, {"name": "Nicole Martinez", "id": 3779097}, {"name": "Timothy Clayton", "id": 3779098}, {"name": "Richard Day", "id": 3779100}, {"name": "Michael Jones", "id": 3779102}], "links": [{"source": 3300608, "target": 2448375}, {"source": 2404047, "target": 2448340}, {"source": 2404047, "target": 2448375}, {"source": 2448375, "target": 3779097}, {"source": 2448375, "target": 3779098}, {"source": 2448375, "target": 3779100}, {"source": 2448375, "target": 3779102}]}
|
[
3300608
] | 1 |
2,047 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Angelica Anderson, Tyler Hunt, Erica Moon, William Whitaker, Matthew Ruiz, Beverly Lee MD, Sue Hall, Michael Bright, Jacob Kemp, Carol Frazier, Matthew West, Cristian Gomez, Karen Harrison, Mary Martinez
- Fiendship connections: Angelica Anderson to Jacob Kemp, Tyler Hunt to Karen Harrison, Tyler Hunt to William Whitaker, Erica Moon to Jacob Kemp, William Whitaker to Karen Harrison, Matthew Ruiz to Sue Hall, Beverly Lee MD to Jacob Kemp, Sue Hall to Michael Bright, Jacob Kemp to Mary Martinez, Jacob Kemp to Carol Frazier
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Angelica Anderson", "id": 2454435}, {"name": "Tyler Hunt", "id": 1768388}, {"name": "Erica Moon", "id": 3974916}, {"name": "William Whitaker", "id": 1587590}, {"name": "Matthew Ruiz", "id": 2797095}, {"name": "Beverly Lee MD", "id": 3974922}, {"name": "Sue Hall", "id": 2411179}, {"name": "Michael Bright", "id": 2411212}, {"name": "Jacob Kemp", "id": 2456178}, {"name": "Carol Frazier", "id": 2593394}, {"name": "Matthew West", "id": 2423960}, {"name": "Cristian Gomez", "id": 2474265}, {"name": "Karen Harrison", "id": 863098}, {"name": "Mary Martinez", "id": 2513022}], "links": [{"source": 2454435, "target": 2456178}, {"source": 1768388, "target": 863098}, {"source": 1768388, "target": 1587590}, {"source": 3974916, "target": 2456178}, {"source": 1587590, "target": 863098}, {"source": 2797095, "target": 2411179}, {"source": 3974922, "target": 2456178}, {"source": 2411179, "target": 2411212}, {"source": 2456178, "target": 2513022}, {"source": 2456178, "target": 2593394}]}
|
[
2454435,
863098,
2411179,
2423960,
2474265
] | 5 |
2,048 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Lauren Christian, Timothy Dougherty II, Jeremy Fisher, Kimberly Cochran, James Morris
- Fiendship connections: Lauren Christian to Timothy Dougherty II, Lauren Christian to Kimberly Cochran, Timothy Dougherty II to Jeremy Fisher, Timothy Dougherty II to Kimberly Cochran, Jeremy Fisher to Kimberly Cochran
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Lauren Christian", "id": 1913294}, {"name": "Timothy Dougherty II", "id": 1550062}, {"name": "Jeremy Fisher", "id": 1913295}, {"name": "Kimberly Cochran", "id": 2056123}, {"name": "James Morris", "id": 1590140}], "links": [{"source": 1913294, "target": 1550062}, {"source": 1913294, "target": 2056123}, {"source": 1550062, "target": 1913295}, {"source": 1550062, "target": 2056123}, {"source": 1913295, "target": 2056123}]}
|
[
1550062,
1590140
] | 2 |
2,049 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Kayla Brown, Katherine Cooper, Robert Ballard, Stephen Chapman, Lisa Carter, Tyler Lucero, Rhonda Ramirez, Matthew Robles, Michael Cameron, Michelle Jenkins, Jennifer Wright, Kevin Estes, Julie Perez
- Fiendship connections: Kayla Brown to Stephen Chapman, Kayla Brown to Michael Cameron, Katherine Cooper to Robert Ballard, Robert Ballard to Julie Perez, Robert Ballard to Lisa Carter, Robert Ballard to Tyler Lucero, Rhonda Ramirez to Michael Cameron, Matthew Robles to Michael Cameron, Michael Cameron to Jennifer Wright, Michael Cameron to Michelle Jenkins
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Kayla Brown", "id": 1875680}, {"name": "Katherine Cooper", "id": 6090018}, {"name": "Robert Ballard", "id": 5326635}, {"name": "Stephen Chapman", "id": 1195787}, {"name": "Lisa Carter", "id": 6090031}, {"name": "Tyler Lucero", "id": 6090032}, {"name": "Rhonda Ramirez", "id": 1742068}, {"name": "Matthew Robles", "id": 1348629}, {"name": "Michael Cameron", "id": 2191832}, {"name": "Michelle Jenkins", "id": 2385211}, {"name": "Jennifer Wright", "id": 1337244}, {"name": "Kevin Estes", "id": 1375485}, {"name": "Julie Perez", "id": 5130207}], "links": [{"source": 1875680, "target": 1195787}, {"source": 1875680, "target": 2191832}, {"source": 6090018, "target": 5326635}, {"source": 5326635, "target": 5130207}, {"source": 5326635, "target": 6090031}, {"source": 5326635, "target": 6090032}, {"source": 1742068, "target": 2191832}, {"source": 1348629, "target": 2191832}, {"source": 2191832, "target": 1337244}, {"source": 2191832, "target": 2385211}]}
|
[
1875680,
6090018,
1375485
] | 3 |
2,050 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Paul Ross, Kim Gibson, Pamela Wall, Darlene Mcclure
- Fiendship connections: Paul Ross to Pamela Wall, Kim Gibson to Pamela Wall, Pamela Wall to Darlene Mcclure
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Paul Ross", "id": 990432}, {"name": "Kim Gibson", "id": 962722}, {"name": "Pamela Wall", "id": 990331}, {"name": "Darlene Mcclure", "id": 1889676}], "links": [{"source": 990432, "target": 990331}, {"source": 962722, "target": 990331}, {"source": 990331, "target": 1889676}]}
|
[
990432
] | 1 |
2,051 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Rebecca Marshall, Timothy Taylor, Mary Rogers, Victoria Monroe, Jonathan Barajas, Michael Robinson, Alexandria Taylor
- Fiendship connections: Rebecca Marshall to Victoria Monroe, Mary Rogers to Victoria Monroe, Victoria Monroe to Michael Robinson, Victoria Monroe to Jonathan Barajas, Victoria Monroe to Alexandria Taylor
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Rebecca Marshall", "id": 1033154}, {"name": "Timothy Taylor", "id": 1543651}, {"name": "Mary Rogers", "id": 1036100}, {"name": "Victoria Monroe", "id": 1006501}, {"name": "Jonathan Barajas", "id": 888651}, {"name": "Michael Robinson", "id": 855799}, {"name": "Alexandria Taylor", "id": 1735992}], "links": [{"source": 1033154, "target": 1006501}, {"source": 1036100, "target": 1006501}, {"source": 1006501, "target": 855799}, {"source": 1006501, "target": 888651}, {"source": 1006501, "target": 1735992}]}
|
[
1033154,
1543651
] | 2 |
2,052 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Robyn Hanson, Hayley Walsh, Andrea Dickerson, Tiffany Martin
- Fiendship connections: Robyn Hanson to Tiffany Martin, Robyn Hanson to Andrea Dickerson, Robyn Hanson to Hayley Walsh, Hayley Walsh to Andrea Dickerson, Andrea Dickerson to Tiffany Martin
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Robyn Hanson", "id": 1996561}, {"name": "Hayley Walsh", "id": 2361586}, {"name": "Andrea Dickerson", "id": 1581845}, {"name": "Tiffany Martin", "id": 1045098}], "links": [{"source": 1996561, "target": 1045098}, {"source": 1996561, "target": 1581845}, {"source": 1996561, "target": 2361586}, {"source": 2361586, "target": 1581845}, {"source": 1581845, "target": 1045098}]}
|
[
1996561
] | 1 |
2,053 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Robert Johnson, Kimberly Malone, Gregory Washington, Carol Stephenson
- Fiendship connections: Robert Johnson to Gregory Washington, Robert Johnson to Kimberly Malone
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Robert Johnson", "id": 4955680}, {"name": "Kimberly Malone", "id": 5298467}, {"name": "Gregory Washington", "id": 5146763}, {"name": "Carol Stephenson", "id": 5082014}], "links": [{"source": 4955680, "target": 5146763}, {"source": 4955680, "target": 5298467}]}
|
[
4955680,
5082014
] | 2 |
2,054 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Anthony Keller, Mrs. Stephanie Livingston, Michael Mckee, Mr. Robert Mays, Rhonda Moore, Heather Murillo, Dustin Williams, Kimberly Barron, Jonathan Smith, Susan Sweeney, Melissa Thomas, Kristopher Wang
- Fiendship connections: Anthony Keller to Melissa Thomas, Mrs. Stephanie Livingston to Kimberly Barron, Michael Mckee to Rhonda Moore, Mr. Robert Mays to Kimberly Barron, Rhonda Moore to Kimberly Barron, Heather Murillo to Kimberly Barron, Dustin Williams to Kimberly Barron, Kimberly Barron to Susan Sweeney, Kimberly Barron to Kristopher Wang, Jonathan Smith to Melissa Thomas, Jonathan Smith to Susan Sweeney
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Anthony Keller", "id": 1360152}, {"name": "Mrs. Stephanie Livingston", "id": 988004}, {"name": "Michael Mckee", "id": 988008}, {"name": "Mr. Robert Mays", "id": 988207}, {"name": "Rhonda Moore", "id": 1368817}, {"name": "Heather Murillo", "id": 871347}, {"name": "Dustin Williams", "id": 861556}, {"name": "Kimberly Barron", "id": 1576501}, {"name": "Jonathan Smith", "id": 861940}, {"name": "Susan Sweeney", "id": 1607255}, {"name": "Melissa Thomas", "id": 1309844}, {"name": "Kristopher Wang", "id": 2270367}], "links": [{"source": 1360152, "target": 1309844}, {"source": 988004, "target": 1576501}, {"source": 988008, "target": 1368817}, {"source": 988207, "target": 1576501}, {"source": 1368817, "target": 1576501}, {"source": 871347, "target": 1576501}, {"source": 861556, "target": 1576501}, {"source": 1576501, "target": 1607255}, {"source": 1576501, "target": 2270367}, {"source": 861940, "target": 1309844}, {"source": 861940, "target": 1607255}]}
|
[
988004
] | 1 |
2,055 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Kenneth Moore, Taylor Wilson, Daniel Marsh, Samuel Moore, Kelly Flores, Michael Weaver, Brandy Andrade, Chad Russo
- Fiendship connections: Kenneth Moore to Chad Russo, Taylor Wilson to Daniel Marsh, Daniel Marsh to Brandy Andrade, Daniel Marsh to Michael Weaver, Samuel Moore to Chad Russo, Kelly Flores to Chad Russo
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Kenneth Moore", "id": 4578912}, {"name": "Taylor Wilson", "id": 1091041}, {"name": "Daniel Marsh", "id": 1908515}, {"name": "Samuel Moore", "id": 4717635}, {"name": "Kelly Flores", "id": 4717639}, {"name": "Michael Weaver", "id": 2099464}, {"name": "Brandy Andrade", "id": 1504794}, {"name": "Chad Russo", "id": 2488511}], "links": [{"source": 4578912, "target": 2488511}, {"source": 1091041, "target": 1908515}, {"source": 1908515, "target": 1504794}, {"source": 1908515, "target": 2099464}, {"source": 4717635, "target": 2488511}, {"source": 4717639, "target": 2488511}]}
|
[
4578912,
2099464
] | 2 |
2,056 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Courtney Mercer, Steve Larsen, Jennifer Mcguire, Elizabeth Elliott, Shelby Branch
- Fiendship connections: Courtney Mercer to Steve Larsen, Steve Larsen to Jennifer Mcguire, Steve Larsen to Elizabeth Elliott
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Courtney Mercer", "id": 4100050}, {"name": "Steve Larsen", "id": 2460947}, {"name": "Jennifer Mcguire", "id": 4100051}, {"name": "Elizabeth Elliott", "id": 4100053}, {"name": "Shelby Branch", "id": 3383839}], "links": [{"source": 4100050, "target": 2460947}, {"source": 2460947, "target": 4100051}, {"source": 2460947, "target": 4100053}]}
|
[
4100050,
3383839
] | 2 |
2,057 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Christina Gonzalez, Ashlee Herman, Nicole Murray, Kristina Lee, Shannon Johnson, Aaron Gates, Ronald Stevens, Kevin House, Deborah Hood, Douglas Boone
- Fiendship connections: Christina Gonzalez to Douglas Boone, Christina Gonzalez to Nicole Murray, Christina Gonzalez to Kevin House, Christina Gonzalez to Ashlee Herman, Christina Gonzalez to Kristina Lee, Nicole Murray to Aaron Gates, Aaron Gates to Deborah Hood
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Christina Gonzalez", "id": 897258}, {"name": "Ashlee Herman", "id": 1663403}, {"name": "Nicole Murray", "id": 915020}, {"name": "Kristina Lee", "id": 1126732}, {"name": "Shannon Johnson", "id": 897232}, {"name": "Aaron Gates", "id": 1101488}, {"name": "Ronald Stevens", "id": 2156568}, {"name": "Kevin House", "id": 1118457}, {"name": "Deborah Hood", "id": 962844}, {"name": "Douglas Boone", "id": 789055}], "links": [{"source": 897258, "target": 789055}, {"source": 897258, "target": 915020}, {"source": 897258, "target": 1118457}, {"source": 897258, "target": 1663403}, {"source": 897258, "target": 1126732}, {"source": 915020, "target": 1101488}, {"source": 1101488, "target": 962844}]}
|
[
897258,
897232,
2156568
] | 3 |
2,058 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Laura Smith, Donald Byrd, Justin Schneider, Michael Montoya, Katherine Huerta, Brittney Stone, Crystal Becker, Jessica Colon, Christian Ross, Tyler Brown, Marc May, Katherine Reyes, Robert Finley
- Fiendship connections: Laura Smith to Donald Byrd, Laura Smith to Justin Schneider, Donald Byrd to Katherine Huerta, Justin Schneider to Katherine Reyes, Michael Montoya to Jessica Colon, Katherine Huerta to Marc May, Brittney Stone to Crystal Becker, Crystal Becker to Jessica Colon, Jessica Colon to Katherine Reyes
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Laura Smith", "id": 1454752}, {"name": "Donald Byrd", "id": 973537}, {"name": "Justin Schneider", "id": 1454788}, {"name": "Michael Montoya", "id": 834373}, {"name": "Katherine Huerta", "id": 1184388}, {"name": "Brittney Stone", "id": 779662}, {"name": "Crystal Becker", "id": 1043086}, {"name": "Jessica Colon", "id": 1058894}, {"name": "Christian Ross", "id": 1225714}, {"name": "Tyler Brown", "id": 1171410}, {"name": "Marc May", "id": 1380244}, {"name": "Katherine Reyes", "id": 2126204}, {"name": "Robert Finley", "id": 904861}], "links": [{"source": 1454752, "target": 973537}, {"source": 1454752, "target": 1454788}, {"source": 973537, "target": 1184388}, {"source": 1454788, "target": 2126204}, {"source": 834373, "target": 1058894}, {"source": 1184388, "target": 1380244}, {"source": 779662, "target": 1043086}, {"source": 1043086, "target": 1058894}, {"source": 1058894, "target": 2126204}]}
|
[
1454752,
1225714,
1171410,
904861
] | 4 |
2,059 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Tracy Keller, Linda Andrade, David Pham, Ian Leblanc
- Fiendship connections: Tracy Keller to Ian Leblanc, Tracy Keller to David Pham, David Pham to Ian Leblanc
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Tracy Keller", "id": 1733136}, {"name": "Linda Andrade", "id": 1144003}, {"name": "David Pham", "id": 1117332}, {"name": "Ian Leblanc", "id": 897069}], "links": [{"source": 1733136, "target": 897069}, {"source": 1733136, "target": 1117332}, {"source": 1117332, "target": 897069}]}
|
[
1733136,
1144003
] | 2 |
2,060 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Edwin Hull, Kimberly Rogers, James Wilkerson, Brian Freeman, Charles Chase, James Simon
- Fiendship connections: Edwin Hull to Kimberly Rogers, James Wilkerson to Charles Chase, James Wilkerson to Brian Freeman, Brian Freeman to James Simon
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Edwin Hull", "id": 2477217}, {"name": "Kimberly Rogers", "id": 4493219}, {"name": "James Wilkerson", "id": 5204997}, {"name": "Brian Freeman", "id": 5310760}, {"name": "Charles Chase", "id": 5144944}, {"name": "James Simon", "id": 5552337}], "links": [{"source": 2477217, "target": 4493219}, {"source": 5204997, "target": 5144944}, {"source": 5204997, "target": 5310760}, {"source": 5310760, "target": 5552337}]}
|
[
2477217,
5144944
] | 2 |
2,061 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: April Christensen, Yesenia Lamb, Brian Park, Valerie Foster, Stephanie Ryan, Dale Bennett
- Fiendship connections: April Christensen to Dale Bennett, April Christensen to Valerie Foster, April Christensen to Brian Park, Yesenia Lamb to Stephanie Ryan
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "April Christensen", "id": 2494793}, {"name": "Yesenia Lamb", "id": 4064556}, {"name": "Brian Park", "id": 4803962}, {"name": "Valerie Foster", "id": 3084495}, {"name": "Stephanie Ryan", "id": 2459738}, {"name": "Dale Bennett", "id": 2648316}], "links": [{"source": 2494793, "target": 2648316}, {"source": 2494793, "target": 3084495}, {"source": 2494793, "target": 4803962}, {"source": 4064556, "target": 2459738}]}
|
[
2494793,
2459738
] | 2 |
2,062 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Dwayne Anderson, Laura Houston, Lisa Little, Anna Mills
- Fiendship connections: Dwayne Anderson to Lisa Little, Dwayne Anderson to Laura Houston, Dwayne Anderson to Anna Mills
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Dwayne Anderson", "id": 2420968}, {"name": "Laura Houston", "id": 3119466}, {"name": "Lisa Little", "id": 2465056}, {"name": "Anna Mills", "id": 3119575}], "links": [{"source": 2420968, "target": 2465056}, {"source": 2420968, "target": 3119466}, {"source": 2420968, "target": 3119575}]}
|
[
2420968
] | 1 |
2,063 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Douglas Hernandez, Chloe Reed, Juan Campbell, James Craig, Karen Cook, Michaela Jones, Dr. Alan Roberts, Juan Berry, Gloria Fitzgerald, Cheryl Christensen, Brittany Miller, Adrian Hall
- Fiendship connections: Douglas Hernandez to Juan Campbell, Douglas Hernandez to Adrian Hall, Chloe Reed to Gloria Fitzgerald, James Craig to Cheryl Christensen, Karen Cook to Dr. Alan Roberts, Karen Cook to Cheryl Christensen, Michaela Jones to Gloria Fitzgerald, Dr. Alan Roberts to Cheryl Christensen, Juan Berry to Gloria Fitzgerald, Gloria Fitzgerald to Brittany Miller
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Douglas Hernandez", "id": 5074916}, {"name": "Chloe Reed", "id": 799269}, {"name": "Juan Campbell", "id": 4966889}, {"name": "James Craig", "id": 1101098}, {"name": "Karen Cook", "id": 1343724}, {"name": "Michaela Jones", "id": 1242765}, {"name": "Dr. Alan Roberts", "id": 1367724}, {"name": "Juan Berry", "id": 883023}, {"name": "Gloria Fitzgerald", "id": 1101232}, {"name": "Cheryl Christensen", "id": 1854834}, {"name": "Brittany Miller", "id": 1187794}, {"name": "Adrian Hall", "id": 5955029}], "links": [{"source": 5074916, "target": 4966889}, {"source": 5074916, "target": 5955029}, {"source": 799269, "target": 1101232}, {"source": 1101098, "target": 1854834}, {"source": 1343724, "target": 1367724}, {"source": 1343724, "target": 1854834}, {"source": 1242765, "target": 1101232}, {"source": 1367724, "target": 1854834}, {"source": 883023, "target": 1101232}, {"source": 1101232, "target": 1187794}]}
|
[
4966889,
799269,
1101098
] | 3 |
2,064 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Michael Gomez, Michelle Peterson, Victoria Williams, John Morgan, Jeremy Thomas, Jared Jennings, Michelle Davis, Mr. James Bray, William Bruce, Ross Walker, Charles Brown, Mary Salazar, Miss Amber Clarke MD
- Fiendship connections: Michelle Peterson to Miss Amber Clarke MD, Victoria Williams to Ross Walker, John Morgan to William Bruce, Jeremy Thomas to Ross Walker, Jared Jennings to Ross Walker, Mr. James Bray to Miss Amber Clarke MD, Ross Walker to Mary Salazar, Ross Walker to Charles Brown
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Michael Gomez", "id": 2449312}, {"name": "Michelle Peterson", "id": 5952098}, {"name": "Victoria Williams", "id": 2014467}, {"name": "John Morgan", "id": 3060677}, {"name": "Jeremy Thomas", "id": 1390286}, {"name": "Jared Jennings", "id": 2387471}, {"name": "Michelle Davis", "id": 2459151}, {"name": "Mr. James Bray", "id": 5799250}, {"name": "William Bruce", "id": 2420374}, {"name": "Ross Walker", "id": 2215415}, {"name": "Charles Brown", "id": 1954332}, {"name": "Mary Salazar", "id": 1736893}, {"name": "Miss Amber Clarke MD", "id": 5409183}], "links": [{"source": 5952098, "target": 5409183}, {"source": 2014467, "target": 2215415}, {"source": 3060677, "target": 2420374}, {"source": 1390286, "target": 2215415}, {"source": 2387471, "target": 2215415}, {"source": 5799250, "target": 5409183}, {"source": 2215415, "target": 1736893}, {"source": 2215415, "target": 1954332}]}
|
[
2449312,
5952098,
2014467,
3060677,
2459151
] | 5 |
2,065 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Stephanie Soto, Peter Porter, Micheal Mclaughlin, Patricia Wiggins
- Fiendship connections: Stephanie Soto to Peter Porter, Stephanie Soto to Micheal Mclaughlin
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Stephanie Soto", "id": 3068412}, {"name": "Peter Porter", "id": 2420469}, {"name": "Micheal Mclaughlin", "id": 2431502}, {"name": "Patricia Wiggins", "id": 2499463}], "links": [{"source": 3068412, "target": 2420469}, {"source": 3068412, "target": 2431502}]}
|
[
3068412,
2499463
] | 2 |
2,066 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Russell Smith, Amy Ferguson, Alexandra Reyes, Jordan Mckay
- Fiendship connections: Russell Smith to Jordan Mckay, Russell Smith to Amy Ferguson, Amy Ferguson to Jordan Mckay
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Russell Smith", "id": 5029296}, {"name": "Amy Ferguson", "id": 5830393}, {"name": "Alexandra Reyes", "id": 5329945}, {"name": "Jordan Mckay", "id": 5172199}], "links": [{"source": 5029296, "target": 5172199}, {"source": 5029296, "target": 5830393}, {"source": 5830393, "target": 5172199}]}
|
[
5029296,
5329945
] | 2 |
2,067 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Andrea Watson, Tyler Thompson, Adam Perez DDS, Sandra Randolph, Barbara Wright, Jennifer Baker
- Fiendship connections: Andrea Watson to Tyler Thompson, Adam Perez DDS to Barbara Wright
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Andrea Watson", "id": 930790}, {"name": "Tyler Thompson", "id": 1721389}, {"name": "Adam Perez DDS", "id": 2476590}, {"name": "Sandra Randolph", "id": 2479449}, {"name": "Barbara Wright", "id": 4469915}, {"name": "Jennifer Baker", "id": 2447709}], "links": [{"source": 930790, "target": 1721389}, {"source": 2476590, "target": 4469915}]}
|
[
1721389,
4469915,
2479449,
2447709
] | 4 |
2,068 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Peter Stewart, Matthew Jenkins, Morgan Fuller, Summer Hogan, Brett Zavala, Rachel Palmer, Bryan Smith, Catherine Thomas
- Fiendship connections: Matthew Jenkins to Summer Hogan, Morgan Fuller to Summer Hogan, Summer Hogan to Bryan Smith, Summer Hogan to Catherine Thomas, Brett Zavala to Rachel Palmer, Bryan Smith to Catherine Thomas
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Peter Stewart", "id": 4945156}, {"name": "Matthew Jenkins", "id": 2414345}, {"name": "Morgan Fuller", "id": 2480907}, {"name": "Summer Hogan", "id": 2884715}, {"name": "Brett Zavala", "id": 6045105}, {"name": "Rachel Palmer", "id": 5040820}, {"name": "Bryan Smith", "id": 2499701}, {"name": "Catherine Thomas", "id": 2501945}], "links": [{"source": 2414345, "target": 2884715}, {"source": 2480907, "target": 2884715}, {"source": 2884715, "target": 2499701}, {"source": 2884715, "target": 2501945}, {"source": 6045105, "target": 5040820}, {"source": 2499701, "target": 2501945}]}
|
[
4945156,
2414345,
6045105
] | 3 |
2,069 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: John Lloyd, Eric Valenzuela, Amanda Mendoza, Jessica Flores, Noah Lopez
- Fiendship connections: John Lloyd to Amanda Mendoza, Eric Valenzuela to Amanda Mendoza, Jessica Flores to Noah Lopez
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "John Lloyd", "id": 5025452}, {"name": "Eric Valenzuela", "id": 4951893}, {"name": "Amanda Mendoza", "id": 5875254}, {"name": "Jessica Flores", "id": 5883162}, {"name": "Noah Lopez", "id": 5883166}], "links": [{"source": 5025452, "target": 5875254}, {"source": 4951893, "target": 5875254}, {"source": 5883162, "target": 5883166}]}
|
[
5025452,
5883162
] | 2 |
2,070 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Mr. Christopher Smith, Maurice Jones, Richard Wells, Kirsten Duncan
- Fiendship connections: Mr. Christopher Smith to Richard Wells, Maurice Jones to Richard Wells, Richard Wells to Kirsten Duncan
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Mr. Christopher Smith", "id": 1485130}, {"name": "Maurice Jones", "id": 2206223}, {"name": "Richard Wells", "id": 2049206}, {"name": "Kirsten Duncan", "id": 1938687}], "links": [{"source": 1485130, "target": 2049206}, {"source": 2206223, "target": 2049206}, {"source": 2049206, "target": 1938687}]}
|
[
1485130
] | 1 |
2,071 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Brittany Richardson, Jeremiah Elliott, Sherri Spears, Mark Dean, Brian Peterson, Lauren Blackwell, Kevin Murphy, Jesse Becker
- Fiendship connections: Brittany Richardson to Brian Peterson, Jeremiah Elliott to Lauren Blackwell, Sherri Spears to Kevin Murphy, Sherri Spears to Lauren Blackwell, Sherri Spears to Mark Dean, Mark Dean to Lauren Blackwell, Brian Peterson to Jesse Becker, Lauren Blackwell to Kevin Murphy
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Brittany Richardson", "id": 2435232}, {"name": "Jeremiah Elliott", "id": 1570690}, {"name": "Sherri Spears", "id": 1422341}, {"name": "Mark Dean", "id": 1485446}, {"name": "Brian Peterson", "id": 2419726}, {"name": "Lauren Blackwell", "id": 1503799}, {"name": "Kevin Murphy", "id": 907161}, {"name": "Jesse Becker", "id": 3088987}], "links": [{"source": 2435232, "target": 2419726}, {"source": 1570690, "target": 1503799}, {"source": 1422341, "target": 907161}, {"source": 1422341, "target": 1503799}, {"source": 1422341, "target": 1485446}, {"source": 1485446, "target": 1503799}, {"source": 2419726, "target": 3088987}, {"source": 1503799, "target": 907161}]}
|
[
2435232,
1570690
] | 2 |
2,072 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Jessica Smith, Christine Bishop, Charles Hammond, Miguel Wolf, Brandy Leonard, Kirk Dawson, Sandra Jennings
- Fiendship connections: Christine Bishop to Charles Hammond, Christine Bishop to Brandy Leonard, Christine Bishop to Kirk Dawson, Miguel Wolf to Sandra Jennings, Miguel Wolf to Kirk Dawson, Kirk Dawson to Sandra Jennings
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Jessica Smith", "id": 1124800}, {"name": "Christine Bishop", "id": 278435}, {"name": "Charles Hammond", "id": 3043}, {"name": "Miguel Wolf", "id": 24331}, {"name": "Brandy Leonard", "id": 9940}, {"name": "Kirk Dawson", "id": 163829}, {"name": "Sandra Jennings", "id": 13015}], "links": [{"source": 278435, "target": 3043}, {"source": 278435, "target": 9940}, {"source": 278435, "target": 163829}, {"source": 24331, "target": 13015}, {"source": 24331, "target": 163829}, {"source": 163829, "target": 13015}]}
|
[
1124800,
278435
] | 2 |
2,073 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Jerry Roberts, Teresa Miller, Patrick Strickland, Cameron Bailey, Chelsea Owen
- Fiendship connections: Jerry Roberts to Chelsea Owen
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Jerry Roberts", "id": 4952289}, {"name": "Teresa Miller", "id": 4960578}, {"name": "Patrick Strickland", "id": 5036044}, {"name": "Cameron Bailey", "id": 5282956}, {"name": "Chelsea Owen", "id": 6099416}], "links": [{"source": 4952289, "target": 6099416}]}
|
[
6099416,
4960578,
5036044,
5282956
] | 4 |
2,074 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Heather Lopez, Richard Hernandez, Elizabeth Sandoval, Matthew Mendoza, Jose West
- Fiendship connections: Heather Lopez to Elizabeth Sandoval, Richard Hernandez to Elizabeth Sandoval, Elizabeth Sandoval to Matthew Mendoza
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Heather Lopez", "id": 899722}, {"name": "Richard Hernandez", "id": 1018198}, {"name": "Elizabeth Sandoval", "id": 897882}, {"name": "Matthew Mendoza", "id": 1333691}, {"name": "Jose West", "id": 924538}], "links": [{"source": 899722, "target": 897882}, {"source": 1018198, "target": 897882}, {"source": 897882, "target": 1333691}]}
|
[
899722,
924538
] | 2 |
2,075 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Katelyn Patterson, Randall Smith, Robert Green, Robyn Vargas, Priscilla Rogers, Anita English
- Fiendship connections: Katelyn Patterson to Robert Green, Katelyn Patterson to Randall Smith, Robyn Vargas to Priscilla Rogers, Priscilla Rogers to Anita English
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Katelyn Patterson", "id": 1093666}, {"name": "Randall Smith", "id": 1204931}, {"name": "Robert Green", "id": 792113}, {"name": "Robyn Vargas", "id": 2246134}, {"name": "Priscilla Rogers", "id": 2302262}, {"name": "Anita English", "id": 1680030}], "links": [{"source": 1093666, "target": 792113}, {"source": 1093666, "target": 1204931}, {"source": 2246134, "target": 2302262}, {"source": 2302262, "target": 1680030}]}
|
[
792113,
2302262
] | 2 |
2,076 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Tiffany Griffin, Tyler Fields, Brian Graham, Dustin Rivers, Lisa Clark, Paula Jones, Mr. David Morrison, Judith Walters
- Fiendship connections: Tiffany Griffin to Paula Jones, Tyler Fields to Dustin Rivers, Tyler Fields to Lisa Clark, Dustin Rivers to Mr. David Morrison, Dustin Rivers to Lisa Clark
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Tiffany Griffin", "id": 2442016}, {"name": "Tyler Fields", "id": 1116072}, {"name": "Brian Graham", "id": 1298953}, {"name": "Dustin Rivers", "id": 843274}, {"name": "Lisa Clark", "id": 1216590}, {"name": "Paula Jones", "id": 3663599}, {"name": "Mr. David Morrison", "id": 1214158}, {"name": "Judith Walters", "id": 1919518}], "links": [{"source": 2442016, "target": 3663599}, {"source": 1116072, "target": 843274}, {"source": 1116072, "target": 1216590}, {"source": 843274, "target": 1214158}, {"source": 843274, "target": 1216590}]}
|
[
2442016,
1116072,
1298953,
1919518
] | 4 |
2,077 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Mark Munoz, Juan Rogers, Andrea Miller, Nicole Conrad, Michelle Henderson, Jessica Bailey, Beth Stewart
- Fiendship connections: Mark Munoz to Jessica Bailey, Mark Munoz to Andrea Miller, Mark Munoz to Beth Stewart, Juan Rogers to Andrea Miller, Nicole Conrad to Michelle Henderson, Nicole Conrad to Beth Stewart
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Mark Munoz", "id": 94816}, {"name": "Juan Rogers", "id": 355851}, {"name": "Andrea Miller", "id": 88783}, {"name": "Nicole Conrad", "id": 3825}, {"name": "Michelle Henderson", "id": 66387}, {"name": "Jessica Bailey", "id": 566}, {"name": "Beth Stewart", "id": 285563}], "links": [{"source": 94816, "target": 566}, {"source": 94816, "target": 88783}, {"source": 94816, "target": 285563}, {"source": 355851, "target": 88783}, {"source": 3825, "target": 66387}, {"source": 3825, "target": 285563}]}
|
[
94816
] | 1 |
2,078 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Brittany Garrett, Michele Hill, Jeffrey Montgomery, Alexander Richards, Thomas Schneider, Anthony Key, Johnathan Carter MD
- Fiendship connections: Brittany Garrett to Johnathan Carter MD, Jeffrey Montgomery to Johnathan Carter MD, Jeffrey Montgomery to Anthony Key, Thomas Schneider to Johnathan Carter MD, Anthony Key to Johnathan Carter MD
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Brittany Garrett", "id": 2633315}, {"name": "Michele Hill", "id": 2429860}, {"name": "Jeffrey Montgomery", "id": 2406621}, {"name": "Alexander Richards", "id": 2423576}, {"name": "Thomas Schneider", "id": 2440504}, {"name": "Anthony Key", "id": 2406617}, {"name": "Johnathan Carter MD", "id": 2406429}], "links": [{"source": 2633315, "target": 2406429}, {"source": 2406621, "target": 2406429}, {"source": 2406621, "target": 2406617}, {"source": 2440504, "target": 2406429}, {"source": 2406617, "target": 2406429}]}
|
[
2633315,
2429860,
2423576
] | 3 |
2,079 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Heather Henderson, Nathaniel Sullivan, Julie Kim, Heather Oliver, Sue Leonard
- Fiendship connections: Heather Henderson to Heather Oliver, Heather Henderson to Sue Leonard, Heather Henderson to Nathaniel Sullivan, Heather Henderson to Julie Kim
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Heather Henderson", "id": 5654126}, {"name": "Nathaniel Sullivan", "id": 4960119}, {"name": "Julie Kim", "id": 5104789}, {"name": "Heather Oliver", "id": 4939959}, {"name": "Sue Leonard", "id": 4942776}], "links": [{"source": 5654126, "target": 4939959}, {"source": 5654126, "target": 4942776}, {"source": 5654126, "target": 4960119}, {"source": 5654126, "target": 5104789}]}
|
[
5654126
] | 1 |
2,080 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Nancy Yu, Samantha Joseph, Jasmine Lam, James Harris, Debbie Bradford
- Fiendship connections: Nancy Yu to Samantha Joseph, Samantha Joseph to James Harris, Samantha Joseph to Debbie Bradford
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Nancy Yu", "id": 2474123}, {"name": "Samantha Joseph", "id": 3840812}, {"name": "Jasmine Lam", "id": 2418667}, {"name": "James Harris", "id": 2449491}, {"name": "Debbie Bradford", "id": 2464884}], "links": [{"source": 2474123, "target": 3840812}, {"source": 3840812, "target": 2449491}, {"source": 3840812, "target": 2464884}]}
|
[
2464884,
2418667
] | 2 |
2,081 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Tyrone Miller, Lisa Brown, Jamie Carpenter, Anthony Harrison
- Fiendship connections: Tyrone Miller to Lisa Brown, Tyrone Miller to Jamie Carpenter, Lisa Brown to Jamie Carpenter, Jamie Carpenter to Anthony Harrison
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Tyrone Miller", "id": 5438336}, {"name": "Lisa Brown", "id": 5013138}, {"name": "Jamie Carpenter", "id": 5013141}, {"name": "Anthony Harrison", "id": 4959775}], "links": [{"source": 5438336, "target": 5013138}, {"source": 5438336, "target": 5013141}, {"source": 5013138, "target": 5013141}, {"source": 5013141, "target": 4959775}]}
|
[
5438336
] | 1 |
2,082 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Caroline Vargas, Christine Schneider, Thomas Jimenez, Steven Arias MD, Ronald Payne, Alyssa Ryan
- Fiendship connections: Caroline Vargas to Alyssa Ryan, Steven Arias MD to Alyssa Ryan, Ronald Payne to Alyssa Ryan
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Caroline Vargas", "id": 2412768}, {"name": "Christine Schneider", "id": 2405157}, {"name": "Thomas Jimenez", "id": 2502186}, {"name": "Steven Arias MD", "id": 4825424}, {"name": "Ronald Payne", "id": 2483672}, {"name": "Alyssa Ryan", "id": 2495259}], "links": [{"source": 2412768, "target": 2495259}, {"source": 4825424, "target": 2495259}, {"source": 2483672, "target": 2495259}]}
|
[
2412768,
2405157,
2502186
] | 3 |
2,083 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Michael Caldwell, Kevin Miller, Jose Peterson, Tammy Dawson, Felicia Deleon, Raven Combs, Jamie Rangel
- Fiendship connections: Tammy Dawson to Felicia Deleon, Tammy Dawson to Jamie Rangel
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Michael Caldwell", "id": 2405321}, {"name": "Kevin Miller", "id": 2497994}, {"name": "Jose Peterson", "id": 2455760}, {"name": "Tammy Dawson", "id": 2464503}, {"name": "Felicia Deleon", "id": 2464408}, {"name": "Raven Combs", "id": 2482876}, {"name": "Jamie Rangel", "id": 4209567}], "links": [{"source": 2464503, "target": 2464408}, {"source": 2464503, "target": 4209567}]}
|
[
2405321,
2497994,
2455760,
2464408,
2482876
] | 5 |
2,084 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Sarah Prince, Regina Walter, Amber Hodge, Matthew Rogers, Joseph Michael
- Fiendship connections: Sarah Prince to Joseph Michael, Regina Walter to Joseph Michael, Amber Hodge to Joseph Michael
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Sarah Prince", "id": 5457057}, {"name": "Regina Walter", "id": 5895653}, {"name": "Amber Hodge", "id": 5895915}, {"name": "Matthew Rogers", "id": 5047477}, {"name": "Joseph Michael", "id": 4968637}], "links": [{"source": 5457057, "target": 4968637}, {"source": 5895653, "target": 4968637}, {"source": 5895915, "target": 4968637}]}
|
[
5457057,
5047477
] | 2 |
2,085 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Whitney Ferguson, Heidi Zamora, Courtney Rubio, Rebecca Miller, Brandon Arias, Ashley Barnes, Frank Lawrence, Karen Carter, Jeffrey Smith, Jared Dodson, John Lee, Dominique Murray, Rose Wong
- Fiendship connections: Whitney Ferguson to Dominique Murray, Heidi Zamora to Brandon Arias, Rebecca Miller to Jeffrey Smith, Rebecca Miller to Karen Carter, Brandon Arias to Jeffrey Smith, Brandon Arias to Dominique Murray, Ashley Barnes to John Lee, Ashley Barnes to Karen Carter, Jared Dodson to Dominique Murray
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Whitney Ferguson", "id": 2447809}, {"name": "Heidi Zamora", "id": 3941729}, {"name": "Courtney Rubio", "id": 2414563}, {"name": "Rebecca Miller", "id": 2431745}, {"name": "Brandon Arias", "id": 2455497}, {"name": "Ashley Barnes", "id": 2440395}, {"name": "Frank Lawrence", "id": 2499693}, {"name": "Karen Carter", "id": 2855472}, {"name": "Jeffrey Smith", "id": 2654166}, {"name": "Jared Dodson", "id": 2463770}, {"name": "John Lee", "id": 2418779}, {"name": "Dominique Murray", "id": 3796637}, {"name": "Rose Wong", "id": 2491295}], "links": [{"source": 2447809, "target": 3796637}, {"source": 3941729, "target": 2455497}, {"source": 2431745, "target": 2654166}, {"source": 2431745, "target": 2855472}, {"source": 2455497, "target": 2654166}, {"source": 2455497, "target": 3796637}, {"source": 2440395, "target": 2418779}, {"source": 2440395, "target": 2855472}, {"source": 2463770, "target": 3796637}]}
|
[
2447809,
2414563,
2499693,
2491295
] | 4 |
2,086 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Jamie Sanchez, Crystal Hernandez, Colleen Nguyen, Jessica Harrison, Christopher Stevens, Mark Stuart
- Fiendship connections: Jamie Sanchez to Crystal Hernandez, Crystal Hernandez to Jessica Harrison, Christopher Stevens to Mark Stuart
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Jamie Sanchez", "id": 2442345}, {"name": "Crystal Hernandez", "id": 2440842}, {"name": "Colleen Nguyen", "id": 2422185}, {"name": "Jessica Harrison", "id": 3652210}, {"name": "Christopher Stevens", "id": 1373939}, {"name": "Mark Stuart", "id": 2205463}], "links": [{"source": 2442345, "target": 2440842}, {"source": 2440842, "target": 3652210}, {"source": 1373939, "target": 2205463}]}
|
[
2442345,
2422185,
1373939
] | 3 |
2,087 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Krista Carroll, Sheri Riley, Nichole Bowers, Robert Johnson, Mary Jones, Donna Robinson MD, Annette Thompson, Sarah Torres
- Fiendship connections: Robert Johnson to Donna Robinson MD, Mary Jones to Donna Robinson MD, Donna Robinson MD to Sarah Torres
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Krista Carroll", "id": 2434760}, {"name": "Sheri Riley", "id": 2453450}, {"name": "Nichole Bowers", "id": 2465837}, {"name": "Robert Johnson", "id": 3821177}, {"name": "Mary Jones", "id": 2495253}, {"name": "Donna Robinson MD", "id": 2460857}, {"name": "Annette Thompson", "id": 2457948}, {"name": "Sarah Torres", "id": 4104893}], "links": [{"source": 3821177, "target": 2460857}, {"source": 2495253, "target": 2460857}, {"source": 2460857, "target": 4104893}]}
|
[
2434760,
2453450,
2465837,
3821177,
2457948
] | 5 |
2,088 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Derek Hill, Daniel Lopez, Jennifer Morales, Beth Dawson, Joshua Wilcox
- Fiendship connections: Derek Hill to Joshua Wilcox, Daniel Lopez to Joshua Wilcox, Jennifer Morales to Joshua Wilcox, Beth Dawson to Joshua Wilcox
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Derek Hill", "id": 237175}, {"name": "Daniel Lopez", "id": 684555}, {"name": "Jennifer Morales", "id": 684556}, {"name": "Beth Dawson", "id": 684598}, {"name": "Joshua Wilcox", "id": 237174}], "links": [{"source": 237175, "target": 237174}, {"source": 684555, "target": 237174}, {"source": 684556, "target": 237174}, {"source": 684598, "target": 237174}]}
|
[
237175
] | 1 |
2,089 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Christopher Berg, Chad Moran, Heather Walsh, Sarah Smith, Nancy Pacheco
- Fiendship connections: Christopher Berg to Heather Walsh, Chad Moran to Heather Walsh, Heather Walsh to Sarah Smith, Heather Walsh to Nancy Pacheco
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Christopher Berg", "id": 5193792}, {"name": "Chad Moran", "id": 5508006}, {"name": "Heather Walsh", "id": 5017578}, {"name": "Sarah Smith", "id": 5003151}, {"name": "Nancy Pacheco", "id": 5508026}], "links": [{"source": 5193792, "target": 5017578}, {"source": 5508006, "target": 5017578}, {"source": 5017578, "target": 5003151}, {"source": 5017578, "target": 5508026}]}
|
[
5193792
] | 1 |
2,090 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Ashley Pennington, Michael Long, Jasmine Ortiz, Kathy Richardson
- Fiendship connections: Ashley Pennington to Jasmine Ortiz, Ashley Pennington to Michael Long
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Ashley Pennington", "id": 2412083}, {"name": "Michael Long", "id": 2817660}, {"name": "Jasmine Ortiz", "id": 2817646}, {"name": "Kathy Richardson", "id": 2452367}], "links": [{"source": 2412083, "target": 2817646}, {"source": 2412083, "target": 2817660}]}
|
[
2412083,
2452367
] | 2 |
2,091 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Cindy Lee, Kimberly Stanton, Jay Bolton, Casey Gutierrez, Alexis Miranda
- Fiendship connections: Cindy Lee to Kimberly Stanton, Kimberly Stanton to Alexis Miranda, Jay Bolton to Casey Gutierrez
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Cindy Lee", "id": 852805}, {"name": "Kimberly Stanton", "id": 1933893}, {"name": "Jay Bolton", "id": 2488045}, {"name": "Casey Gutierrez", "id": 4125069}, {"name": "Alexis Miranda", "id": 1423609}], "links": [{"source": 852805, "target": 1933893}, {"source": 1933893, "target": 1423609}, {"source": 2488045, "target": 4125069}]}
|
[
1423609,
2488045
] | 2 |
2,092 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Jose Perez, Timothy Paul, Julie Harrison, Shannon White
- Fiendship connections: Timothy Paul to Shannon White, Julie Harrison to Shannon White
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Jose Perez", "id": 856969}, {"name": "Timothy Paul", "id": 1020877}, {"name": "Julie Harrison", "id": 1261422}, {"name": "Shannon White", "id": 828951}], "links": [{"source": 1020877, "target": 828951}, {"source": 1261422, "target": 828951}]}
|
[
856969,
1020877
] | 2 |
2,093 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Frank Mejia, Cassie Lester, Tracy Mendoza, William Myers, Tyler Rhodes, Laura Henderson, Lindsey Anderson, Clarence Ramirez, Tina Garcia, Alex Brewer, Jason Mccullough, Christopher Espinoza, Wendy Brown, Justin Reynolds
- Fiendship connections: Cassie Lester to Alex Brewer, Cassie Lester to Justin Reynolds, Tracy Mendoza to Christopher Espinoza, William Myers to Jason Mccullough, Jason Mccullough to Christopher Espinoza
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Frank Mejia", "id": 2430625}, {"name": "Cassie Lester", "id": 105826}, {"name": "Tracy Mendoza", "id": 2874951}, {"name": "William Myers", "id": 2439354}, {"name": "Tyler Rhodes", "id": 2462664}, {"name": "Laura Henderson", "id": 4811}, {"name": "Lindsey Anderson", "id": 2413003}, {"name": "Clarence Ramirez", "id": 1088112}, {"name": "Tina Garcia", "id": 2421491}, {"name": "Alex Brewer", "id": 5205}, {"name": "Jason Mccullough", "id": 3622842}, {"name": "Christopher Espinoza", "id": 2488443}, {"name": "Wendy Brown", "id": 2487421}, {"name": "Justin Reynolds", "id": 5599}], "links": [{"source": 105826, "target": 5205}, {"source": 105826, "target": 5599}, {"source": 2874951, "target": 2488443}, {"source": 2439354, "target": 3622842}, {"source": 3622842, "target": 2488443}]}
|
[
2430625,
105826,
2439354,
2462664,
4811,
2413003,
1088112,
2421491,
2487421
] | 9 |
2,094 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Lisa Taylor, Shannon Fuller, Walter Gonzales, James Ayala, Barbara Young, Dawn Webster, Victoria Hansen, Joseph Underwood, Cindy Walsh, Micheal Jones, Matthew Mason, Brian Barnes, Stacey Stevens
- Fiendship connections: Shannon Fuller to Matthew Mason, Walter Gonzales to Victoria Hansen, James Ayala to Dawn Webster, Barbara Young to Dawn Webster, Dawn Webster to Micheal Jones, Dawn Webster to Cindy Walsh, Dawn Webster to Stacey Stevens, Micheal Jones to Brian Barnes, Matthew Mason to Brian Barnes
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Lisa Taylor", "id": 2430565}, {"name": "Shannon Fuller", "id": 2403977}, {"name": "Walter Gonzales", "id": 2403851}, {"name": "James Ayala", "id": 2678669}, {"name": "Barbara Young", "id": 2678670}, {"name": "Dawn Webster", "id": 2408496}, {"name": "Victoria Hansen", "id": 2429072}, {"name": "Joseph Underwood", "id": 2437428}, {"name": "Cindy Walsh", "id": 2432693}, {"name": "Micheal Jones", "id": 2406964}, {"name": "Matthew Mason", "id": 2403606}, {"name": "Brian Barnes", "id": 2404121}, {"name": "Stacey Stevens", "id": 2678620}], "links": [{"source": 2403977, "target": 2403606}, {"source": 2403851, "target": 2429072}, {"source": 2678669, "target": 2408496}, {"source": 2678670, "target": 2408496}, {"source": 2408496, "target": 2406964}, {"source": 2408496, "target": 2432693}, {"source": 2408496, "target": 2678620}, {"source": 2406964, "target": 2404121}, {"source": 2403606, "target": 2404121}]}
|
[
2430565,
2403977,
2429072,
2437428
] | 4 |
2,095 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Richard Hill, Jennifer Blake, Robert Middleton, John Morris, Timothy Casey, Cynthia Ellis, Cynthia Trujillo
- Fiendship connections: Richard Hill to Robert Middleton, Jennifer Blake to Robert Middleton, Robert Middleton to Cynthia Ellis, Robert Middleton to John Morris, Robert Middleton to Cynthia Trujillo
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Richard Hill", "id": 1197091}, {"name": "Jennifer Blake", "id": 2176492}, {"name": "Robert Middleton", "id": 1395568}, {"name": "John Morris", "id": 1730775}, {"name": "Timothy Casey", "id": 773402}, {"name": "Cynthia Ellis", "id": 1512444}, {"name": "Cynthia Trujillo", "id": 2075806}], "links": [{"source": 1197091, "target": 1395568}, {"source": 2176492, "target": 1395568}, {"source": 1395568, "target": 1512444}, {"source": 1395568, "target": 1730775}, {"source": 1395568, "target": 2075806}]}
|
[
1197091,
773402
] | 2 |
2,096 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Laura Garcia, Jonathan Ruiz, Lisa Kim, Christopher Johnson
- Fiendship connections: Laura Garcia to Jonathan Ruiz
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Laura Garcia", "id": 4927064}, {"name": "Jonathan Ruiz", "id": 5348363}, {"name": "Lisa Kim", "id": 5074876}, {"name": "Christopher Johnson", "id": 4998277}], "links": [{"source": 4927064, "target": 5348363}]}
|
[
4927064,
5074876,
4998277
] | 3 |
2,097 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Jamie Larson, Katherine Ayers, Natasha Wallace, Robert Castillo, Joshua Mullen
- Fiendship connections: Jamie Larson to Joshua Mullen, Jamie Larson to Robert Castillo, Katherine Ayers to Robert Castillo, Robert Castillo to Joshua Mullen
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Jamie Larson", "id": 895880}, {"name": "Katherine Ayers", "id": 1479755}, {"name": "Natasha Wallace", "id": 1004530}, {"name": "Robert Castillo", "id": 1296500}, {"name": "Joshua Mullen", "id": 957818}], "links": [{"source": 895880, "target": 957818}, {"source": 895880, "target": 1296500}, {"source": 1479755, "target": 1296500}, {"source": 1296500, "target": 957818}]}
|
[
895880,
1004530
] | 2 |
2,098 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Rodney Simmons, Jamie Snyder, Courtney Palmer DDS, Jeffrey Kelley, Makayla Wolfe, Samantha Carroll, Tara Rodriguez, Gabriela Stewart, William Young, Angela Moore
- Fiendship connections: Rodney Simmons to William Young, Jamie Snyder to Tara Rodriguez, Jamie Snyder to Jeffrey Kelley, Courtney Palmer DDS to Makayla Wolfe, Jeffrey Kelley to Gabriela Stewart, Makayla Wolfe to Angela Moore, Makayla Wolfe to Gabriela Stewart, Makayla Wolfe to Samantha Carroll, Tara Rodriguez to William Young
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Rodney Simmons", "id": 817537}, {"name": "Jamie Snyder", "id": 797826}, {"name": "Courtney Palmer DDS", "id": 916585}, {"name": "Jeffrey Kelley", "id": 803982}, {"name": "Makayla Wolfe", "id": 800148}, {"name": "Samantha Carroll", "id": 823414}, {"name": "Tara Rodriguez", "id": 796728}, {"name": "Gabriela Stewart", "id": 831673}, {"name": "William Young", "id": 796668}, {"name": "Angela Moore", "id": 777245}], "links": [{"source": 817537, "target": 796668}, {"source": 797826, "target": 796728}, {"source": 797826, "target": 803982}, {"source": 916585, "target": 800148}, {"source": 803982, "target": 831673}, {"source": 800148, "target": 777245}, {"source": 800148, "target": 831673}, {"source": 800148, "target": 823414}, {"source": 796728, "target": 796668}]}
|
[
817537
] | 1 |
2,099 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Erin Anderson, Jennifer Crawford, Dale Evans, Michael Lee
- Fiendship connections: Erin Anderson to Dale Evans, Erin Anderson to Michael Lee, Erin Anderson to Jennifer Crawford
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Erin Anderson", "id": 1381937}, {"name": "Jennifer Crawford", "id": 2284627}, {"name": "Dale Evans", "id": 2152027}, {"name": "Michael Lee", "id": 2284622}], "links": [{"source": 1381937, "target": 2152027}, {"source": 1381937, "target": 2284622}, {"source": 1381937, "target": 2284627}]}
|
[
1381937
] | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.