jc-structure 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.d.ts +1 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -511,7 +511,7 @@ declare module "jc-structure" {
511
511
  ): T;
512
512
 
513
513
  /**
514
- * #### 最长递增子序列
514
+ * #### 计算最长递增子序列(Longest Increasing Subsequence, LIS)
515
515
  * @param nums
516
516
  */
517
517
  export function LIS(nums: Array<number>): Array<number>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "jc-structure",
3
3
  "private": false,
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist",