Anders and Briegel in Python
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

7 行
132B

  1. from abp.fancy import GraphState
  2. g = GraphState()
  3. n = 10
  4. g.add_nodes_from(range(n))
  5. g.add_edges_from([i, i+1] for i in range(n-1))