refactor: use Package.swift to define executable task

This commit is contained in:
nuomi1
2023-01-02 21:48:32 +08:00
parent 6e8954672f
commit 377200a39a
7 changed files with 169 additions and 131 deletions
+14
View File
@@ -0,0 +1,14 @@
/*
* File: ListNode.swift
* Created Time: 2023-01-02
* Author: nuomi1 (nuomi1@qq.com)
*/
public class ListNode {
public var val: Int //
public var next: ListNode? //
public init(x: Int) {
val = x
}
}