«fibonacci» 태그된 질문

문제는 피보나치 수 또는 일반화 중 하나입니다.

30
ASCII 삼각형
당신의 임무는 ASCII 삼각형을 인쇄하는 프로그램이나 함수를 작성하는 것입니다. 그들은 다음과 같이 보입니다 : |\ | \ | \ ---- 프로그램은 n제약 조건 이있는 단일 숫자 입력을 0 <= n <= 1000받습니다. 위 삼각형의 값은 n=3입니다. ASCII 삼각형에는 n백 슬래시 ( \) 및 세로 막대 ( |), n+1선 및 대시 …
30 code-golf  ascii-art  code-golf  rubiks-cube  code-golf  path-finding  maze  regular-expression  code-golf  math  rational-numbers  code-golf  kolmogorov-complexity  graphical-output  code-golf  tips  code-golf  string  permutations  code-golf  sorting  base-conversion  binary  code-golf  tips  basic  code-golf  number  number-theory  fibonacci  code-golf  date  code-golf  restricted-source  quine  file-system  code-golf  code-golf  math  code-golf  ascii-art  code-golf  math  primes  code-golf  code-golf  math  matrix  code-golf  string  math  logic  factorial  code-golf  palindrome  code-golf  quine  stateful  code-golf  interactive  code-golf  board-game  code-golf  math  arithmetic  code-golf  string  code-golf  math  matrix  code-golf  math  abstract-algebra  polynomials  code-golf  date  code-golf  string  array-manipulation  sorting  code-golf  game  code-golf  string  code-golf  ascii-art  decision-problem  code-golf  number  sequence  code-golf  code-golf  code-golf  sequence  fibonacci  code-golf  math  geometry  random  code-golf  code-golf  math  decision-problem  fractal  rational-numbers  code-golf  number  number-theory  code-golf  combinatorics  permutations  card-games  code-golf  math  sequence  array-manipulation  fibonacci  code-golf  sequence  decision-problem  graph-theory  code-golf  ascii-art  parsing  lisp  code-golf  string  math  natural-language  logic  code-golf  math  logic  code-golf  string  alphabet  code-golf  string  code-golf  string 

26
디지털 섬 피보나치
우리는 모두 피보나치 시퀀스에 익숙 합니다 . 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181, 6765 그러나 대신에, f(n) = f(n-1) + f(n-2)우리는 이전 2 개의 항목의 디지털 합계 를 취할 것 입니다. 0, 1차이가 급격히 나타난 후 …

3
도움! 계산기가 고장났습니다! (정수 표현식을 계산기 키 스트로크로 전환)
소개 도움! 실수로 TI-84 계산기를 창문 밖으로 떨어 뜨 렸습니다 (어떻게 묻지 않습니까). 나는 내일 수학 시험을 가지고 있고 내가 찾을 수있는 유일한 계산기는 다음 버튼이있는 계산기입니다. 7 8 9 + 4 5 6 - 1 2 3 * 0 = / 내 수학 테스트는 식 평가에 대한 검토 테스트입니다. …

30
가장 가까운 피보나치 수 찾기
우리는 유명한 잘 알고있는 피보나치 시퀀스 , 그와 함께 시작 0하고 1, 각 요소는 이전 두의 합계입니다. 처음 몇 용어 (OEIS A000045 ) 는 다음과 같습니다 . 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584 양의 정수가 주어지면 다음 …

28
수퍼 로그 계산
이것은 간단한 도전이어야합니다. 숫자 감안할 때 n >= 0, 출력 슈퍼 로그 (로그 - 스타 또는 로그 *를, 또는 로그 반복 하기 때문에 동일, n이 문제에 대한 부정적인 결코합니다.)의 n. 이것은 tetratation 에 대한 두 가지 역함수 중 하나입니다 . 다른 하나는 관련 질문 에있는 수퍼 루트 입니다. 예 Input …
29 code-golf  math  code-golf  array-manipulation  sorting  code-golf  math  arithmetic  matrix  code-golf  string  kolmogorov-complexity  code-golf  string  code-golf  math  sequence  arithmetic  recursion  code-golf  math  ascii-art  sequence  code-golf  math  array-manipulation  code-golf  code-golf  kolmogorov-complexity  code-golf  string  code-golf  string  decision-problem  code-golf  array-manipulation  tips  javascript  json  code-golf  math  string  number  number-theory  code-golf  math  sequence  fibonacci  number  arithmetic  fastest-code  integer  code-golf  math  sequence  code-golf  string  file-system  tips  golfscript  code-golf  string  code-golf  string  natural-language  code-golf  string  file-system  code-golf  math  array-manipulation  code-challenge  image-processing  compression  code-golf  math  number  sequence  code-golf  math  combinatorics  regular-expression  code-golf  sequence  pi  code-golf  ascii-art  code-golf  string  array-manipulation  sorting  code-golf  string  graph-theory  code-golf  string  code-golf  string  ascii-art  code-challenge  compression  code-golf  code-golf  math  sequence  number-theory  code-golf  maze  graph-theory  code-golf  math  sequence 

11
음의 피보나치 수
피보나치 수열을 모두 알고있을 것입니다. fibonacci(n)=fibonacci(n-1)+fibonacci(n-2) fibonacci(0)=0 fibonacci(1)=1 당신의 작업은 다음과 같이 간단합니다. 주어진 정수 N계산fibonacci(n) 그러나 여기에 비틀기가 있습니다. 또한 부정적인 일을 N 기다림. 뭐? fibonacci(1)=fibonacci(0)+fibonacci(-1) 그래서 fibonacci(-1)=1 과 fibonacci(-2)=fibonacci(0)-fibonacci(1)=-1 등등... 이것은 코드 골프 이므로 바이트 단위의 가장 짧은 프로그램이 승리합니다. 기능 또는 전체 프로그램을 제출할 수 있습니다 N은 …

30
편지 쓰기 피보나치
을 감안할 때 N (2 <= N ), 인쇄 N의 피보나치 시리즈이 (즉, 같은 문자의 라인 N = 5) 첫째, 시작 a과 b: a b 다음으로 두 줄을 추가하십시오. a b ab 마지막 두 줄을 계속 추가하십시오. a b ab bab 계속 ... a b ab bab abbab 그리고 우리는 …

19
월요일 미니 골프 # 1 : 역 피보나치 솔버
Monday Mini-Golf : 매주 월요일에 게시 되는 일련의 짧은 코드 골프 과제입니다. 피보나치는 유사 서열 유명한 동일한 방법하여 얻어지는 피보나치 시퀀스 ; 즉, 각 숫자 F (n) 은 시퀀스에서 이전 두 숫자를 더하거나 ( F (n) = F (n-1) + F (n-2) ) 다음 두 숫자를 빼서 ( F (n) …

30
맞춤형 피보나치 시퀀스 골프
피보나치 시퀀스는 주변에서 꽤 잘 알려진 일이다. 심지어 자체 태그가 있습니다. 그러나 모든 것을 위해 우리는 우리의 뿌리를 고수하고 싶습니다 1, 1, ...(또는 0, 1, ...우리는 결코 알지 못할 수도 있습니다 ...). 이 챌린지에서 규칙은 동일하지만 n피보나치 시퀀스에서 th 항목 을 얻는 대신에 피보나치 시퀀스로 nth 항목을 가져옵니다 x, y, …

30
답변-채 이닝 피보나치
( ASCII의 95 자 ... 95 영화 인용문에서 영감을 받음 ) 도전 입력이 주어지면 피보나치 수를n 출력하십시오 . 또는 색인을 사용할 수 있습니다 . 제출할 내용을 명시하십시오. 간단 하죠? 캐치는 바로 이전 답변의 문자 세트를 가져 와서 두 문자를 제거하고 별도의 문자를 추가해야한다는 것입니다. 별도의 문자는nth 01 직전 답변의 문자 …

14
피보나치 스타일 매트릭스 확장
행렬의 각 행과 열에 대해 해당 행이나 열의 마지막 두 항목의 합으로 추가 항목을 추가 할 수 있습니다. 예를 들어 다음 입력 매트릭스를 사용하십시오. [ 1 1 1 ] [ 2 3 4 ] 결과 행렬은 다음과 같습니다. [ 1 1 1 2 ] [ 2 3 4 7 ] …

19
무한한 FTW
무한 피보나치 워드는 특정 유한 이진 워드의 반복 연결하여 계산 이진수의 무한 시퀀스이다. 우리는 것을 정의 할 피보나치 형 단어 시퀀스 (또는 FTW 시퀀스 ) 임의의 시퀀스이다 ⟨W N ⟩ 다음과 같이 형성된다. 2 개의 임의의 이진수 배열로 시작합니다. 우리가 이러한 배열 부르 자 W -1 과 W 0 . …

3
단순화 된 커닝 구현
소개 커닝 이란 텍스트 문자 사이의 간격을 조정하는 것을 의미합니다. 예를 들어, Top다음 세 가지 글리프로 작성된 단어를 고려하십시오 . ##### ..... ..... ..#.. ..... ..... ..#.. ..##. .###. ..#.. .#..# .#..# ..#.. .#..# .#..# ..#.. ..##. .###. ..... ..... .#... ..... ..... .#... 글리프 사이의 틈을 점으로 채우고 완성 …
24 code-golf  grid  code-challenge  atomic-code-golf  code-golf  combinatorics  probability-theory  card-games  code-golf  number  geometry  code-golf  decision-problem  chess  code-golf  math  number  sequence  code-golf  string  regular-expression  code-golf  arithmetic  integer  code-golf  math  array-manipulation  code-golf  number  decision-problem  integer  code-golf  string  ascii-art  kolmogorov-complexity  code-golf  decision-problem  graph-theory  binary-matrix  code-golf  string  parsing  code-golf  string  code-golf  morse  code-golf  code-golf  string  code-golf  ascii-art  cellular-automata  code-golf  binary  base-conversion  code-golf  arithmetic  decision-problem  integer  checksum  code-golf  matrix  linear-algebra  code-golf  code-golf  game  code-golf  sequence  binary  code-golf  combinatorics  optimization  code-golf  decision-problem  quine  code-golf  rational-numbers  bitwise  code-golf  string  permutations  code-golf  kolmogorov-complexity  unicode  code-golf  ascii-art  number  code-golf  number  integer  binary  base-conversion  code-golf  array-manipulation  code-golf  chemistry  code-golf  number  sequence  fibonacci  code-golf  matrix  optimization  code-golf  number  code-golf  math  number  sequence  code-golf  math  array-manipulation  matrix  linear-algebra  code-golf  kolmogorov-complexity  cops-and-robbers  cops-and-robbers  code-golf  tips  basic  code-golf  decision-problem  binary  tiling  game  king-of-the-hill  python  code-golf  c  code-golf  ascii-art  code-golf  string  kolmogorov-complexity  alphabet  code-golf  number  code-golf  string  code-golf  number  sequence  integer  code-golf  number  permutations  restricted-complexity  restricted-time 

12
교류 전력 피보나치 시퀀스
정의 교류 전력 피보나치 시퀀스는 다음과 같이 구성됩니다. 빈 시퀀스로 시작하여 n 을 1로 설정하십시오 . 계산 F , N 은 N 번째 음수 피보나치 수 번 반복. 0 은 첫 번째, 1 은 두 번째 및 세 번째, 2 는 네 번째입니다. 다른 모든 것은 시퀀스에서 두 개의 이전 …

12
디비 나치 수열
디비 나치 ( OEIS ) 피보나치 순서를 수행하지만 다음을 사용하는 대신 f(n) = f(n-1)+f(n-2) 용도: f(n) = sum(divisors(f(n-1))) + sum(divisors(f(n-2))) 의 입력에 n대해 n 번째 항을 출력하려면 프로그램에 입력이 1 개만 있어야합니다. 처음 14 개의 용어 (0- 인덱스, 1- 인덱스, 사용한 상태) : 0 | 0 # Initial | [] …

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