99 Elm 问题/问题 82
外观
从给定节点开始查找图中的所有封闭路径。
# # # 这是一个存根 # # #
Example in Elm:
import Html exposing (text)
import List
f : Int -> Int
-- your implementation goes here
main = text (toString (f 0))
结果
4
从给定节点开始查找图中的所有封闭路径。
# # # 这是一个存根 # # #
Example in Elm:
import Html exposing (text)
import List
f : Int -> Int
-- your implementation goes here
main = text (toString (f 0))
结果
4