-
### 🔗 [도넛과 막대 그래프](https://school.programmers.co.kr/learn/courses/30/lessons/258711)
-
_version:_ numbro 2.4.0
After transitioning from numeral.js I noticed that a format string of `'0'` does not round to the nearest integer
```
> var numbro = require("numbro");
undefined
> num…
-
Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.
You may assume that each input would have exactly one solution, and you may…
-
### Description
You are given a 0-indexed integer array nums and an integer k. Your task is to perform the following operation exactly k times in order to maximize your score:
Select an element …
-
I would like to request adding constant values to `int` called (for instance) `maxValue` and `minValue` that represent the largest and smallest valid integers.
It would be helpful to be able to ask…
-
整数的 数组形式 num 是按照从左到右的顺序表示其数字的数组。
例如,对于 num = 1321 ,数组形式是 [1,3,2,1] 。
给定 num ,整数的 数组形式 ,和整数 k ,返回 整数 num + k 的 数组形式 。
示例 1:
输入:num = [1,2,0,0], k = 34
输出:[1,2,3,4]
解释:1200 + 34 = 1234…
-
[46. 全排列](https://leetcode.cn/problems/permutations/)
-
### Bug description
If you define a working generic type inside a record (being used as a namespace), it throws an assertion error.
### Code example
```lua
## local make_something = generali…
-
Hello stdlib developers,
I'm opening this issue to summarize and coalesce upcoming efforts to integrate linear algebra operations in stdlib, in particular:
1) Accessible interfaces for common li…
-
Perhaps this is working as intended, but I was surprised to get a negative number.
```elixir
iex> Money.split(Money.new( :USD, 200), 3)
{Money.new(:USD, "66.67"), Money.new(:USD, "-0.01")}
```
…