«base-conversion» 태그된 질문

위치 숫자 시스템 간의 숫자 변환 가장 일반적인 시스템은 10 진수, 2 진수, 16 진수 등입니다.

16
16 진수를 이진수로
모든 크기의 16 진수를 이진수로 변환하십시오. 입력 긍정적 인 A를 16 진수 시작한다. 유효한 입력은 항상 다음 정규식과 일치합니다 . 입력이 유효한 16 진수 가 아닌 경우 , 즉이 정규식과 일치하지 않는 경우 출력은이어야합니다 . 0x0x[0-9a-fA-F]+0 출력 16 진수를 이진수로 변환했습니다. 가장 적은 양의 물린 오리지널 코드 골프 규칙 승리(bytes) …

6
N 개의 염기에서 회 문인 숫자
음수가 아닌 정수가 주어지면 정확히 다른 기저의 회 문인 n >= 0정수 시퀀스를 영원히 출력 합니다 .x_i >= 3nb2 <= b <= x_i-2 이것은 기본적으로 OEIS A126071 의 역수입니다 n. 이 시퀀스에서 어떤 인덱스에 값이 있는지 출력합니다 . 베이스를 무시하도록 변경했기 때문에 약간 다릅니다.베이스 b = x_i-1, x_i, x_i+1에 대한 …
10 code-golf  sequence  base-conversion  palindrome  code-golf  array-manipulation  matrix  code-golf  string  ascii-art  code-golf  ascii-art  physics  code-golf  number  sequence  fibonacci  code-golf  ascii-art  packing  code-golf  string  hexadecimal  code-challenge  restricted-source  decision-problem  binary  code-golf  code-golf  code-golf  stack-exchange-api  code-golf  string  parsing  generation  data-structures  code-golf  kolmogorov-complexity  graphical-output  code-golf  array-manipulation  integer  generation  data-structures  code-golf  number  random  probability-theory  king-of-the-hill  java  minesweeper  code-golf  string  kolmogorov-complexity  animation  code-golf  string  code-golf  code-golf  quine  code-golf  internet  code-golf  arithmetic  base-conversion 

7
Base85 인코딩
도전 ASCII 인쇄 가능 문자가 포함 된 단일 행 문자열을 입력하고 Base85로 인코딩 된 동일한 문자열 (빅 엔디안 규칙 사용)을 출력 할 수있는 프로그램을 작성하십시오 . 입력이 항상 ≤ 100 자라고 가정 할 수 있습니다. Base85 가이드 4 개의 옥텟은 (보통) 5 개의 Base85 문자로 인코딩됩니다. Base85 문자의 범위 !에 …

10
바이트 배열을 base64로 변환
당신의 임무는 바이트 배열 (예 : 0에서 255의 정수 배열)을 base64로 변환하는 함수 / 프로그램을 작성하는 것입니다. 내장 base64 엔코더 사용은 허용되지 않습니다. 필수 base64 구현은 RFC 2045입니다 ( "+", "/"및 "="로 필수 패딩 사용) 가장 짧은 코드 (바이트)가 이깁니다! 예: 입력 (int array) : [99, 97, 102, 195, 169] …

30
int 입력 n이 주어지면 n * reversed (n)을 출력하십시오.
정수가 주어지면 n출력하십시오.n * reversed(n) reversed(n)reverse의 자릿수 일 때 얻는 숫자입니다 n. reverse(512) = 215 reverse(1) = 1 reverse(101) = 101 >>>>>>>> func(5) = 5*5 = 25 func(12) = 12*21 = 252 func(11) = 11*11 = 121 func(659) = 659*956 = 630004 최단 코드 승리! 리더 보드 코드 스 니펫 …
9 code-golf  math  arithmetic  code-golf  math  integer  code-golf  arithmetic  integer  code-golf  sequence  base-conversion  palindrome  code-golf  math  primes  integer  code-golf  parsing  conversion  syntax  code-golf  sequence  primes  code-challenge  geometry  optimization  code-golf  graph-theory  code-golf  number-theory  primes  integer  code-golf  source-layout  cops-and-robbers  code-golf  source-layout  cops-and-robbers  code-golf  sequence  primes  integer  code-golf  math  number-theory  primes  rational-numbers  code-golf  math  sequence  number-theory  primes  code-golf  string  code-golf  math  combinatorics  permutations  restricted-complexity  code-golf  array-manipulation  code-golf  number  sequence  code-golf  number  sequence  code-golf  binary-matrix  code-golf  math  tips  javascript  algorithm  code-golf  string  code-golf  number  sequence  code-golf  math  arithmetic  parsing  code-golf  number  sequence  primes  code-golf  string  ascii-art  geometry  integer  code-golf  geometry  code-golf  number  array-manipulation  code-golf  math  geometry  code-golf  number  sequence  arithmetic  integer  code-golf  string  kolmogorov-complexity  code-golf  number  code-golf  number  chess  code-golf  sequence  decision-problem  subsequence  code-golf  math  number  primes  code-golf  primes  permutations  code-golf  integer  probability-theory  statistics  code-golf  string  code-golf  sequence  decision-problem  parsing  board-game  code-golf  binary  graph-theory  code-golf  board-game  classification  tic-tac-toe  code-golf  ascii-art  polyglot  code-golf  date  code-golf  geometry 

14
이진 이진 확장
일반적으로, 우리는 2의 거듭 제곱으로 계수 0또는 1각 항에 대해 숫자를 대입하여 이진수로 숫자를 분해합니다 . 25 = 1*16 + 1*8 + 0*4 + 0*2 + 1*1 0and 의 선택 1은 ... 이진이 아닙니다. 우리는 2의 거듭 제곱으로 계수를 사용 하거나 대신 계수를 사용하여 실제 이진 확장을 수행합니다 .1-1 25 …

1
음의 XOR 소수
약 1 년 전에 XOR 소수 를 찾아야했습니다 . 이들은 밑이 2 인 XOR 곱셈을 수행 할 때 요인이 1 인 숫자입니다 . 이제는 약간의 향신료를 만들려고했습니다. 기본 -2 에서 XOR 소수를 찾을 것입니다. 베이스 -2로 변환 베이스 -2는 다른 모든베이스와 매우 비슷합니다. 가장 왼쪽은 1s 장소 (1 = (-2) …

5
10 진수와 2 ** i베이스로 숫자 표를 인쇄합니다
컴퓨터는 바이너리로 산다. 모든 프로그래머는 바이너리를 알고 있습니다. 그러나 2**x기본은 종종 비 실용적 인 것으로 무시되지만 이진과 아름다운 관계가 있습니다. 그러한 아름다운 관계의 한 가지 예를 보여 드리기 위해 19는 나의 증언이 될 것입니다. 19 10011 103 23 13 j 19는 명확성을 위해 포함 된 10 진수입니다. 10011은 이진수로 19입니다. …

2
유전 적 기초 변화
배경 이 문제에서 정수 의 기본 b표현 은 의 거듭 제곱의 n표현 n으로 b, 각 항은 최대 b-1횟수로 발생합니다 . 예를 들어, 기본 4표현 2015은 4^5 + 3*4^4 + 3*4^3 + 4^2 + 3*4 + 3 이제, 유전 적 기본 b표현은 n지수를 기본 b표현으로 변환 한 다음 지수를 재귀 적으로 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.