«sequence» 태그된 질문

어떤 종류의 시퀀스와 관련된 문제.

19
행운의 숫자 생성
이야기: Lucy는 George에게 그의 Lucky Number가 무엇인지 물었습니다. 약간의 숙고 끝에 George는 여러 개의 Lucky Numbers가 있다고 대답했습니다. 약간 혼란스러워 한 루시는 조지에게 첫 n럭키 넘버가 무엇인지 물었다 . 그런 다음 조지는 친구에게 그에게 일을 할 수있는 프로그램을 작성해달라고 부탁했습니다. 도전 과제 : 표준 입력 / 함수 인수에서 문자열 또는 …

10
n까지의 최단 경로 수를 센다
이 코드 챌린지는 ( 는 음이 아닌 정수)의 맵을 사용 하여 최소 단계 수로 에서 시작 하여 에 도달하는 방법의 수를 계산하게 합니다.엔엔n222x ↦ x + xj엑스↦엑스+엑스jx \mapsto x + x^jjjj (이는 OEIS 시퀀스 A307092 와 관련이 있습니다.) 예 예를 들어, 세 개의 맵이 필요하기 때문에 이고 에서 을 보내는 …

26
디지털 기념
입력이 주어지면 모든베이스 1 ~ n에 n대한 디지털 합계의 합계를 출력 / 반환하는 프로그램이나 함수를 작성하십시오 n. n + ∑b = 2엔∑나는 = 0∞⌊ n비나는⌋ 개조Bn+∑b=2n∑i=0∞⌊nbi⌋modbn + \sum_{b=2}^n \sum_{i=0}^\infty \left\lfloor \frac{n}{b^i} \right\rfloor \bmod b 예: n = 5 범위를 만듭니다 [1...n].[1,2,3,4,5] 각 요소 x에 대해 다음 의 기본 x자릿수 배열을 …

11
과일 포장 공장
귀하의 임무는 컨베이어 벨트에서 포장재를 포장재로 포장하여 소매 업체로 발송하도록 최적화 할 수있는 알고리즘 (프로그램 또는 기능)을 구축하여 가장 많은 수의 포장재를 최적화하는 것입니다. 각각의 백은 적어도 특정 양의 중량을 가져야하지만, 그 중량이 다른 백을 채우기 위해 사용될 수 있기 때문에 초과분은 이익을 잃게된다. 포장 기계는 항상 n대기열에서 과일을 미리 …

30
X 단계 앞으로, 1 단계 뒤로
쉬운 순서의 처음 100 개 숫자는 다음과 같습니다. 0,1,0,2,1,4,3,7,6,11,10,16,15,22,21,29,28,37,36,46,45,56,55,67,66,79,78,92,91,106,105,121,120,137,136,154,153,172,171,191,190,211,210,232,231,254,253,277,276,301,300,326,325,352,351,379,378,407,406,436,435,466,465,497,496,529,528,562,561,596,595,631,630,667,666,704,703,742,741,781,780,821,820,862,861,904,903,947,946,991,990,1036,1035,1082,1081,1129,1128,1177,1176,1226 이 순서는 어떻게 작동합니까? n: 0 1 2 3 4 5 6 7 8 9 10 11 12 0, 1-1=0, 2-1=1, 4-1=3, 7-1=6, 11-1=10, 16-1=15, 0+1=1, 0+2=2, 1+3=4, 3+4=7, 6+5=11, 10+6=16, 15+7=22 a(0) = 0 모든 홀수 n(0 인덱싱)에 대해 a(n-1) …

20
내 책이이 테이블에서 떨어지길 원합니다
이야기 그래서 나는 다른 책들과 함께 내 테이블에서 분리하고 싶은 책이 있습니다. 권의 책 길이로 이것을 달성하기 위해 얼마나 많은 책이 필요한지 알고 싶습니다 .엔엔n Wolfram의 친구가 나를 위해 그린 시각화는 다음과 같습니다. 의 항목에 대한 자세한 내용은 볼프람 및 위키 백과 . 도전 정수 입력 주어지면 , 상위 도서가 …

7
반 지수 함수
반 지수 함수는 자체 구성 될 때, 지수 함수를 제공 한 것이다. 예를 들어, 경우는 f(f(x)) = 2^x, 다음 f반 지수 함수 될 것이다. 이 도전에서는 특정 반 지수 함수를 계산합니다. 특히 다음 속성을 사용하여 음이 아닌 정수에서 음이 아닌 정수로 함수를 계산합니다. 일정하게 증가하는 다음과 같은 경우 x < …

16
하나 더 프로그램하고 나왔습니다!
양의 정수 중첩 수준을 감안할 때 n문자열 s인쇄 가능한 ASCII 문자 (의 에 ~같은 언어로 실행하면, 프로그램을 출력하는 프로그램을 출력하고, 출력하는 프로그램... 문자열을 출력합니다 s. 총 n프로그램이 생성되어야하며, 모든 프로그램은 답변과 동일한 언어로 실행되어야합니다. 참고 : 기본적으로 제출로 허용되는 모든 프로그램 또는 기능을 출력 할 수 있습니다. s이스케이프 문자로 입력 …
21 code-golf  recursion  code-golf  kolmogorov-complexity  board-game  code-golf  number-theory  polynomials  code-golf  code-golf  array-manipulation  polyglot  alphabet  answer-chaining  code-golf  sequence  math  atomic-code-golf  abstract-algebra  proof-golf  code-golf  internet  code-golf  internet  code-golf  ascii-art  kolmogorov-complexity  code-golf  math  ascii-art  number  integer  code-golf  decision-problem  binary-matrix  code-golf  number  sequence  number-theory  code-golf  math  decision-problem  matrix  abstract-algebra  code-golf  string  keyboard  code-golf  fractal  code-golf  math  sequence  combinatorics  hello-world  vim  code-golf  sequence  code-golf  graphical-output  image-processing  code-golf  decision-problem  matrix  linear-algebra  code-golf  ascii-art  code-golf  math  code-golf  ascii-art  graphical-output  code-golf  string  code-golf  string  substitution  code-golf  string  ascii-art  code-golf  arithmetic  code-golf  number  array-manipulation  decision-problem  code-golf  kolmogorov-complexity  code-generation  fractal  code-golf  ascii-art  kolmogorov-complexity  code-golf  ascii-art  code-golf  string  array-manipulation  code-golf  music  code-golf  array-manipulation  code-golf  internet  stack-exchange-api  math  fastest-algorithm  code-golf  binary  bitwise  code-golf  date  code-golf  string  code-golf  sequence  integer  code-golf  arithmetic  number-theory  code-golf  string  random 

17
9로 수렴합시다!
정수 주어 N> 2 인쇄하거나 가장 작은 음이 아닌 정수 리턴 K 되도록 A (N, K) = 9 , A는 (N, K)은 에 의해 정의된다 : a (n, 0) = n a (n, k + 1) = a (n , k) 가 짝수이면 a (n, k) / 2 + 1 …

20
아직 사용하지 않은 쌍
양의 정수 시퀀스를 정의 해 봅시다. 짝수에 대한 순서를 이전 항의 두 배로 정의합니다. 시퀀스의 홀수 인덱스는 시퀀스에 아직 나타나지 않은 가장 작은 양의 정수입니다. 첫 커플 용어는 다음과 같습니다. 1,2,3,6,4,8,5,10,7,14,9,18,11,22,12,24,13,26,15,30 이것을 연결 쌍 (n, 2n) 의 목록으로 생각할 수도 있습니다. 여기서 n 은 가장 사용되지 않은 양의 정수입니다. 태스크 …

30
제수의 곱
도전 양의 정수가 주어지면 자신을 포함한 제수의 곱을 반환하십시오. 이것은 OEIS의 시퀀스 A007955입니다 . 테스트 사례 1 : 1 2 : 2 3 : 3 4 : 8 5 : 5 6:36 7 : 7 8:64 9:27 10 : 100 12 : 1728 14 : 196 24 : 331776 25 …

3
인생이 레몬을 줄 때 레모네이드 만들기
도전 당신은 어디 단어, 입력 문자열이 주어집니다 "Lemon"이 변환되어야 발견 "Lemonade" 하지만a , d그리고 e문장에 다른 곳에서 빌려해야합니다. 예 입력 예 : 어렸을 때 레몬을 찾았 어요 출력 예 : 내가 어렸을 때 레모네이드를 찾았 어 레모네이드는 원본에서 다음 첨자 문자를 도용하여 만든 내가 foun D 레모네이드 어 전자 N …
21 code-golf  string  code-golf  parsing  internet  stack-exchange-api  code-challenge  kolmogorov-complexity  restricted-source  brain-flak  python  logic  pyth  code-golf  string  search  optimized-output  code-golf  tips  language-design  golfing-language  code-golf  tips  language-design  code-golf  number  sorting  pi  code-golf  math  number  code-golf  string  balanced-string  classification  brain-flak  code-golf  math  number-theory  decision-problem  code-golf  tips  code-golf  number  sequence  code-golf  balanced-string  brain-flak  code-golf  math  sequence  arithmetic  fibonacci  code-golf  math  parsing  code-golf  string  keyboard  code-golf  code-golf  string  source-layout  whitespace  code-golf  math  rational-numbers  code-golf  string  code-golf  string  code-golf  math  sequence  code-golf  number  floating-point  code-golf  string  decision-problem  subsequence  code-golf  string  kolmogorov-complexity  code-golf  string  permutations  balanced-string  brain-flak  code-golf  string  math  number  code-golf  string  primes  cipher  code-golf  string  ascii-art  chemistry  code-golf  ascii-art  grid  counting  code-golf  math  arithmetic  integer  code-golf  number  kolmogorov-complexity  code-golf  ascii-art  kolmogorov-complexity  sequence  metagolf  brain-flak  code-golf  ascii-art  kolmogorov-complexity  code-golf  string  whitespace 

8
골롬의 흔들리는 순서
OEIS 는 Golomb의 시퀀스 에 변형 (A111439)이 있습니다. Golomb의 시퀀스에서와 A(n)같이 시퀀스에 얼마나 자주 n나타나는지 설명합니다 . 그러나 두 개의 연속 된 숫자가 동일하지 않을 수도 있습니다. 시퀀스를 구축하는 동안 A(n)항상이 두 속성을 위반하지 않는 가장 작은 양의 정수로 선택됩니다. 연속 된 동일한 숫자가 허용되지 않기 때문에 시리즈는 자라면서 약간 …

28
Baum-Sweet 시퀀스
Baum-Sweet 시퀀스 (트위스트가있는 A086747) 양의 정수 n를 받아 Baum-Sweet 시퀀스가 ​​true를 반환하는 1에서 n까지의 정수를 인쇄합니다. 바움 - 달콤한 순서는 반환해야 falsy 수의 이진 표현은 홀수 어디 수의 연속 제로의 수, 포함되어있는 경우 truthy을 그렇지. 자세한 내용을 보려면 링크를 클릭하십시오. 다음은 몇 가지 예입니다. 1 -> 1 -> Truthy 2 …

30
주어진 너비로 #의 빈 사각형을 그립니다.
Codingame 에서이 도전을 받았으며 내 것보다 더 나은 솔루션이 궁금합니다. 표준 입력을 통한 너비가 주어지면 주어진 너비와 길이로 빈 사각형 '#'을 그립니다. 예: 5 결과 ##### # # # # # # ##### 나는 이것을 사용하여 파이썬을 사용하여 다른 파이썬 코드에 특히 관심이 있습니다. 그러나 원하는 언어로 솔루션을 게시하십시오.
21 code-golf  string  ascii-art  number  code-golf  grid  code-golf  string  ascii-art  code-golf  alphabet  cipher  code-golf  math  number  code-golf  quine  code-golf  palindrome  polyglot  code-golf  number  array-manipulation  counting  logic  code-golf  string  primes  binary  decision-problem  code-golf  ascii-art  kolmogorov-complexity  popularity-contest  code-golf  probability-theory  code-golf  string  code-golf  python  polyglot  programming-puzzle  c++  code-golf  math  code-golf  binary  integer  bitwise  code-golf  rational-numbers  code-golf  string  palindrome  code-golf  ascii-art  code-golf  code-golf  string  fibonacci  code-golf  math  sequence  code-golf  code-golf  string  palindrome  code-golf  string  code-golf  math  primes  source-layout  code-golf  sequence  binary  integer  code-golf  math  arithmetic  game  code-golf  restricted-source  palindrome  code-golf  restricted-source  palindrome  code-golf  combinatorics  binary  code-golf  string  math  code-golf  ascii-art  number  code-golf  cipher  code-golf  base-conversion  counting  code-golf  sequence  random  classification  code-golf  string  subsequence  code-golf  permutations  code-golf  string  code-golf  string  cipher  code-golf  kolmogorov-complexity  arithmetic  integer  code-golf  quine  markov-chain  code-golf  string  code-golf  code-golf  ascii-art  maze 

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.