google_recruit
f(1)=7182818284
f(2)=8182845904
f(3)=8747135266
f(4)=7427466391
f(5)=__________
약간 동작 같아.수열을 바라보며 실험을 거듭하다 우연히 규칙성을 발견했다.# frozen_string_literal: true
require './assert_equal'
def read_exp
gets.to_s.chomp
end
def g_eq?(n)
sum = 0
until n.zero?
sum += n % 10
n = (n / 10).floor
end
sum == 49
end
def main
exp1 = read_exp
[*2..exp1.length - 10].each do |i|
num = exp1[i..i + 10 - 1].to_i
puts num if g_eq?(num)
end
end
main if __FILE__ == $PROGRAM_NAME
output
7182818284
8182845904
8747135266
7427466391
5966290435
2952605956
잡담
Go to www.Linux.org and enter Bobsyouruncle as the login and the answer to thisequation as the password. 위에서 말한 바와 같이 login을 시도했지만 실패했습니다.구글recrite는 시간이 지나서 무효가 된 건지... 아마 후자일 거예요.
source ~/ghq/github.com/TeamNishitani/grad_members_20f/members/syasin-5d/google_recruit.org
Reference
이 문제에 관하여(google_recruit), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/syasin/items/cda603986e150c33feaa텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)