2023-12-06 rand の rng.gen_range できる型をつくってみた / PAST #15 B
bouzuya/genpi で crates:rand の SampleUniform
と UniformSampler
を実装することで rng.gen_range(start..end)
できるようにしてみた。
https://docs.rs/rand/latest/rand/distributions/uniform/trait.SampleUniform.html https://docs.rs/rand/latest/rand/distributions/uniform/trait.UniformSampler.html
crates:time は features
で rand
を入れると Distribution
は実装され rng.gen()
はできるが SampleUniform
と UniformSampler
は実装されておらず rng.gen_range()
はできない。
rng.gen_range(start..end)
できる Date
をつくってみた。
https://github.com/bouzuya/genpi/commit/8c99fb12601e1e7b1e13f302e581c2204dbf7fa9
PAST #15 第15回 アルゴリズム実技検定(過去問)
- B - 殿堂入り
https://atcoder.jp/contests/past15-open/tasks/past202306_b
- 提出: https://atcoder.jp/contests/past15-open/submissions/48236028
if h >= 2800 { 'o' } else { 'x' }
今日のコミット。