All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com_github_leetcode.Employee.kt Maven / Gradle / Ivy

There is a newer version: 1.30
Show newest version
package com_github_leetcode

class Employee(
    /** It's the unique id of each node; unique id of this employee  */
    var id: Int,
    /** the importance value of this employee  */
    var importance: Int,
    /** the id of direct subordinates  */
    var subordinates: List = listOf()
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy