skill_tree.json 677 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
{
    "python":[
        "python02",
        "java"
    ],
    "python02":[
        "java",
        "algorithm"
    ],
    "algorithm": [
        "c",
        "algorithm02"
    ],
    "algorithm02": [
        "c"
    ],
    "c": [
        "python",
F
feilong 已提交
19 20
        "algorithm",
        "cuda"
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
    ],
    "java": [
        "pg",
        "cloud_native"
    ],
    "pg": [
        "neo4j"
    ],
    "neo4j":[
        "pg"
    ],
    "network": [
        "gml",
        "python"
    ],
    "gml": [
        "network",
        "python"
    ],
    "cloud_native": [
        "gml",
        "python"
F
feilong 已提交
43 44 45 46
    ],
    "vue": [
        "gml",
        "python"
F
feilong 已提交
47 48 49
    ],
    "cuda": [
        "c"
50 51
    ]
}