TypeScript & npm error All In One

TypeScript & npm error All In One

npm ERR! could not determine executable to run


0 verbose cli [
0 verbose cli   '/Users/xgqfrms-mbp/.nvm/versions/node/v16.14.2/bin/node',
0 verbose cli   '/Users/xgqfrms-mbp/.nvm/versions/node/v16.14.2/lib/node_modules/npm/bin/npm-cli.js',
0 verbose cli   'exec',
0 verbose cli   '--',
0 verbose cli   'node-ts',
0 verbose cli   './unflat-array.ts'
0 verbose cli ]
1 info using [email protected]
2 info using [email protected]
3 timing npm:load:whichnode Completed in 0ms
4 timing config:load:defaults Completed in 1ms
5 timing config:load:file:/Users/xgqfrms-mbp/.nvm/versions/node/v16.14.2/lib/node_modules/npm/npmrc Completed in 1ms
6 timing config:load:builtin Completed in 1ms
7 timing config:load:cli Completed in 1ms
8 timing config:load:env Completed in 0ms
9 timing config:load:file:/Users/xgqfrms-mbp/Documents/GitHub/leetcode/.npmrc Completed in 0ms
10 timing config:load:project Completed in 6ms
11 timing config:load:file:/Users/xgqfrms-mbp/.npmrc Completed in 1ms
12 timing config:load:user Completed in 1ms
13 timing config:load:file:/Users/xgqfrms-mbp/.nvm/versions/node/v16.14.2/etc/npmrc Completed in 0ms
14 timing config:load:global Completed in 0ms
15 timing config:load:validate Completed in 1ms
16 timing config:load:credentials Completed in 1ms
17 timing config:load:setEnvs Completed in 1ms
18 timing config:load Completed in 14ms
19 timing npm:load:configload Completed in 14ms
20 timing npm:load:setTitle Completed in 14ms
21 timing config:load:flatten Completed in 2ms
22 timing npm:load:display Completed in 3ms
23 verbose logfile /Users/xgqfrms-mbp/.npm/_logs/2022-09-25T12_36_38_271Z-debug-0.log
24 timing npm:load:logFile Completed in 4ms
25 timing npm:load:timers Completed in 0ms
26 timing npm:load:configScope Completed in 0ms
27 timing npm:load Completed in 36ms
28 silly logfile start cleaning logs, removing 1 files
29 http fetch GET 200 https://registry.npmjs.org/node-ts 268ms (cache revalidated)
30 timing command:exec Completed in 281ms
31 verbose stack Error: could not determine executable to run
31 verbose stack     at getBinFromManifest (/Users/xgqfrms-mbp/.nvm/versions/node/v16.14.2/lib/node_modules/npm/node_modules/libnpmexec/lib/get-bin-from-manifest.js:17:23)
31 verbose stack     at exec (/Users/xgqfrms-mbp/.nvm/versions/node/v16.14.2/lib/node_modules/npm/node_modules/libnpmexec/lib/index.js:115:15)
31 verbose stack     at async module.exports (/Users/xgqfrms-mbp/.nvm/versions/node/v16.14.2/lib/node_modules/npm/lib/cli.js:66:5)
32 verbose pkgid [email protected]
33 verbose cwd /Users/xgqfrms-mbp/Documents/GitHub/leetcode/000-xyz
34 verbose Darwin 21.4.0
35 verbose argv "/Users/xgqfrms-mbp/.nvm/versions/node/v16.14.2/bin/node" "/Users/xgqfrms-mbp/.nvm/versions/node/v16.14.2/lib/node_modules/npm/bin/npm-cli.js" "exec" "--" "node-ts" "./unflat-array.ts"
36 verbose node v16.14.2
37 verbose npm  v8.5.0
38 error could not determine executable to run
39 verbose exit 1
40 timing npm Completed in 460ms
41 verbose code 1
42 error A complete log of this run can be found in:
42 error     /Users/xgqfrms-mbp/.npm/_logs/2022-09-25T12_36_38_271Z-debug-0.log


demo



/**
 *
 * @author xgqfrms
 * @license MIT
 * @copyright xgqfrms
 * @created 2022-09-25
 * @modified
 *
 * @description
 * @difficulty
 * @ime_complexity O(n)
 * @space_complexity O(n)
 * @augments
 * @example
 * @link https://leetcode.com/problems//
 * @solutions
 *
 * @best_solutions
 *
 */

export {};

const log = console.log;



// 第 67 題:隨機生成一個長度爲 10 的整數類型的數組,例如 [2, 10, 3, 4, 5, 11, 10, 11, 20],將其排列成一個新數組,要求新數組形式如下,例如 [[2, 3, 4, 5], [10, 11], [20]]。

// ??? 隨機數組的整數範圍限制 ?

// 排序,分組, 分幾組??? 4: 2: 1

// ??? 0~9, 10 ~ 19, 20 ~ 29 ???


// ??? 重複數字如何處理, 去重 ✅

// const randomArrayGenerator = (len = 10, min = 1, max = 20) => {
//   const result: number[] = [];
//   for (let i = 0; i < len; i++) {
//     // 0 ~ 1, 0 ~ 20
//     // result[i] = Math.max(Math.ceil(Math.random() * min), Math.ceil(Math.random() * max));
//     // result[i] = Math.ceil(Math.random() * max);
//     result.push(Math.ceil(Math.random() * max));
//   }
//   return result;
// }

// const randomUniqueArrayGenerator = (len = 10, min = 1, max = 20) => {
//   const result: number[] = [];
//   while(len > 0) {
//     const temp = Math.ceil(Math.random() * max);
//     if(!result.includes(temp)) {
//       result.push(temp);
//       len--;
//     }
//   }
//   return result;
// }

// const arr = randomArrayGenerator();
// const uniqueArr = randomUniqueArrayGenerator();

// console.log(`random array =`, arr);
// console.log(`unique random array =`, uniqueArr);


// (To exit, press Ctrl+C again or Ctrl+D or type .exit)

// const autoGroup = (arr) => {
//   let result = [];
//   // const temp = arr.sort();
//   const temp = arr.sort((a, b) => a - b > 0 ? 1 : -1);
//   // const max = temp[arr.length - 1];
//   const max = Math.max(...arr);
//   const groups = Math.ceil(max / 10);
//   let index = 0;
//   // let tempMax = -1;
//   let tempMax = temp[0] - 1;
//   // console.log(`❓ temp =`, temp);
//   // console.log(`❓ tempMax =`, tempMax);
//   while(index <= groups) {
//     index += 1;
//     const group = [];
//     for (const item of temp) {
//       console.log(`❓ item =`, item);
//       if(item > tempMax && item < index * 10) {
//         group.push(item);
//       } else {
//         // break;
//       }
//     }
//     tempMax = group[group.length - 1];
//     console.log(`tempMax =`, tempMax);
//     // result.push(group.sort());
//     result.push(group);
//   }
//   return result;
// }

const autoGroup = (arr: number[]) => {
  let result: number[][] = [];
  const temp = arr.sort((a, b) => a - b > 0 ? 1 : -1);
  // const max = temp[arr.length - 1];
  const max = Math.max(...arr);
  const groups = Math.ceil(max / 10);
  let index = 0;
  let tempMax = temp[0] - 1;
  while(index <= groups) {
    index += 1;
    const group: number[] = [];
    let i = 0;
    if(temp.indexOf(tempMax) > -1) {
      // 優化:減少遍歷的次數
      i = temp.indexOf(tempMax);
    }
    for (i; i < temp.length; i++) {
      const item = temp[i];
      if(item > tempMax && item < index * 10) {
        group.push(item);
      }
    }
    tempMax = group[group.length - 1];
    result.push(group);
  }
  return result;
}

const result = autoGroup([2, 10, 3, 4, 5, 11, 10, 11, 20]);

console.log(`groups result =`,  result);
// [[2, 3, 4, 5], [10, 11], [20]]


/*

$ node ./unflat-array.js

$ npx ts-node ./unflat-array.ts

*/

solution ✅

+ ts-node

- node-ts
$  npx ts-node ./unflat-array.ts

tsconfig.json

template


{
  "compilerOptions": {
    /* Visit https://aka.ms/tsconfig.json to read more about this file */

    /* Basic Options */
    // "incremental": true,                   /* Enable incremental compilation */
    "target": "es5",                          /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */
    "module": "commonjs",                     /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
    // "lib": [],                             /* Specify library files to be included in the compilation. */
    // "allowJs": true,                       /* Allow javascript files to be compiled. */
    // "checkJs": true,                       /* Report errors in .js files. */
    // "jsx": "preserve",                     /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
    // "declaration": true,                   /* Generates corresponding '.d.ts' file. */
    // "declarationMap": true,                /* Generates a sourcemap for each corresponding '.d.ts' file. */
    // "sourceMap": true,                     /* Generates corresponding '.map' file. */
    // "outFile": "./",                       /* Concatenate and emit output to single file. */
    // "outDir": "./",                        /* Redirect output structure to the directory. */
    // "rootDir": "./",                       /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
    // "composite": true,                     /* Enable project compilation */
    // "tsBuildInfoFile": "./",               /* Specify file to store incremental compilation information */
    // "removeComments": true,                /* Do not emit comments to output. */
    // "noEmit": true,                        /* Do not emit outputs. */
    // "importHelpers": true,                 /* Import emit helpers from 'tslib'. */
    // "downlevelIteration": true,            /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
    // "isolatedModules": true,               /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */

    /* Strict Type-Checking Options */
    "strict": true,                           /* Enable all strict type-checking options. */
    // "noImplicitAny": true,                 /* Raise error on expressions and declarations with an implied 'any' type. */
    // "strictNullChecks": true,              /* Enable strict null checks. */
    // "strictFunctionTypes": true,           /* Enable strict checking of function types. */
    // "strictBindCallApply": true,           /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
    // "strictPropertyInitialization": true,  /* Enable strict checking of property initialization in classes. */
    // "noImplicitThis": true,                /* Raise error on 'this' expressions with an implied 'any' type. */
    // "alwaysStrict": true,                  /* Parse in strict mode and emit "use strict" for each source file. */

    /* Additional Checks */
    // "noUnusedLocals": true,                /* Report errors on unused locals. */
    // "noUnusedParameters": true,            /* Report errors on unused parameters. */
    // "noImplicitReturns": true,             /* Report error when not all code paths in function return a value. */
    // "noFallthroughCasesInSwitch": true,    /* Report errors for fallthrough cases in switch statement. */
    // "noUncheckedIndexedAccess": true,      /* Include 'undefined' in index signature results */

    /* Module Resolution Options */
    // "moduleResolution": "node",            /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
    // "baseUrl": "./",                       /* Base directory to resolve non-absolute module names. */
    // "paths": {},                           /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
    // "rootDirs": [],                        /* List of root folders whose combined content represents the structure of the project at runtime. */
    // "typeRoots": [],                       /* List of folders to include type definitions from. */
    // "types": [],                           /* Type declaration files to be included in compilation. */
    // "allowSyntheticDefaultImports": true,  /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
    "esModuleInterop": true,                  /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
    // "preserveSymlinks": true,              /* Do not resolve the real path of symlinks. */
    // "allowUmdGlobalAccess": true,          /* Allow accessing UMD globals from modules. */

    /* Source Map Options */
    // "sourceRoot": "",                      /* Specify the location where debugger should locate TypeScript files instead of source locations. */
    // "mapRoot": "",                         /* Specify the location where debugger should locate map files instead of generated locations. */
    // "inlineSourceMap": true,               /* Emit a single file with source maps instead of having a separate file. */
    // "inlineSources": true,                 /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */

    /* Experimental Options */
    // "experimentalDecorators": true,        /* Enables experimental support for ES7 decorators. */
    // "emitDecoratorMetadata": true,         /* Enables experimental support for emitting type metadata for decorators. */

    /* Advanced Options */
    "skipLibCheck": true,                     /* Skip type checking of declaration files. */
    "forceConsistentCasingInFileNames": true  /* Disallow inconsistently-cased references to the same file. */
  }
}

refs

https://www.cnblogs.com/xgqfrms/p/16714232.html



©xgqfrms 2012-2020

www.cnblogs.com/xgqfrms 發佈文章使用:只允許註冊用戶纔可以訪問!

原創文章,版權所有©️xgqfrms, 禁止轉載 🈲️,侵權必究⚠️!


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章