gpt4 book ai didi

ruby - Ruby 中是否有任何优雅的方法将数字转换为数字数组

转载 作者:数据小太阳 更新时间:2023-10-29 07:28:32 24 4
gpt4 key购买 nike

对于n号,我只能想到

array_of_digits = n.to_s.split('').map(&:to_i)

有没有更优雅的方法?

最佳答案

不是更优雅,而是更快:

def digits(n)
(0..Math.log10(n).to_i).map { |dp| n / 10 ** dp % 10 }.reverse
end

我刚找到的另一个快的(最快的)

def digits(n)
n.to_s.each_byte.map { |x| x - 48 }
end

基准:

            user     system      total        real
Split map 0.410000 0.000000 0.410000 ( 0.412397)
chars 0.100000 0.010000 0.110000 ( 0.104450)
each byte 0.070000 0.000000 0.070000 ( 0.068171)
Numerical 0.100000 0.000000 0.100000 ( 0.101828)

基准测试的代码在这里,顺便说一句:https://gist.github.com/sid-code/9ad26dc4b509bfb86810

关于ruby - Ruby 中是否有任何优雅的方法将数字转换为数字数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29592545/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com