com_github_leetcode.Employee.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-kotlin Show documentation
Show all versions of leetcode-in-kotlin Show documentation
Kotlin-based LeetCode algorithm problem solutions, regularly updated
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()
)