2022-08-16 18:15:34 +0100 | received badge | ● Student (source) |
2019-07-04 11:22:26 +0100 | asked a question | How to count face on a bipartite graph? I am graphing a bipartite graph but I need to rearrange the graph. The graph is generated by a list of list. One of the rearrangement guidelines is that the faces have to be surrounded by a certain amount of "white" vertices. Therefore, I wanted to create a checker function that can count the faces of the graph and count the "white" vertices around that face. If the graph doesn't have the correct amount of faces and/or the number of "white" vertices then the program will rearrange the graph. I would like some guidance on this task, what code/math I should use or if I should use a different approach. I have attached the code. If more information is needed to help, please contact me at cameron.dthomas@morehouse.edu Thanks for your time, Cameron Thomas Graf([[1,5,4,3,2]],[[1],[2],[3],[4],[5]]) |