qefeng
qefeng
Is there any options that can control whether to remove trailing '/index' in path ? `import a from 'packages/a/index'`
``` import { gt } from "lodash/fp"; const greaterThan3 = gt(3); greaterThan3(4); // false ``` I would expect `gt(x)` means greater than x ?
- [] I'm sure this does not appear in [the issue list of the repository](https://github.com/arco-design/arco-design/issues) ## Basic Info - **Package Name And Version:** @arco-design/[email protected] - **Browser:** chrome104.0.0.0 - **Reproduction Link:**...
如题,明明还有剪成m段的要求,但解法中没有考虑到。比如长度为8的绳子,要求剪成2段最大就是4\*4=16,要求剪成3段最大就是3\*3\*2=18,要求剪成4段最大就是2\*2\*2\*2=16。但参考解法中只要输入8输出一定就是18,很疑惑。