python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Minimum cost to make connect all nodes in one partition of a weighted undirected bipartite graph
Given a weighted undirected bipartite graph between partition A and B, I'm trying to find the minimum cost to connect all nodes in partition A.
It seems like I need to first find a Minimum Spanning Tr...
Dawei
Votes: 0
Answers: 1
Convert bipartite graph to monopartite for community detection with GDS library
I'm trying to register a graph using gds.graph.create. The source graph contains two node classes connected by one relationship type. I would like the in-memory graph to have only a single node type s...

Matt
Votes: 0
Answers: 1
Python Recursive enumerate(), with Start Value Incrementation
I am attempting to create a Python function which parses through a bracket representation of a binary tree and outputs a line-by-line bipartite graph representation of it, where the partitions are sep...
gladshire
Votes: 0
Answers: 1
N groups have a list of numbers that it can pick. Determine if all groups will be able to choose a number if one group chooses number i
Say that there is a group, each with numbers that it can pick.
Group 1: [1, 2, 3, 4],
Group 2: [2, 3, 4],
Group 3: [2, 3, 4],
Group 4: [4]
Say that it initially Group 4 chooses 4 in its list. Now,...
jack
Votes: 0
Answers: 0