«binary» 태그된 질문

이진수는 기본 2 수 시스템입니다. 기본 2와 관련된 문제에이 태그를 사용하십시오.

30
프라임 파워에서 프라임 복구
정의 : 소수 는 자연수이며 p n 형식으로 표현할 수있는 자연수입니다. 여기서 p는 소수이고 n은 자연수입니다. 작업 : 프라임 전력 p n > 1이 주어지면 프라임 p를 반환합니다. 테스트 케이스 : input output 9 3 16 2 343 7 2687 2687 59049 3 채점 : 이것은 code-golf 입니다. 바이트 단위의 …
13 code-golf  arithmetic  primes  king-of-the-hill  python  board-game  code-golf  number  subsequence  code-golf  ascii-art  code-golf  array-manipulation  decision-problem  grid  fastest-algorithm  logic-gates  logic  code-golf  cards  code-golf  rational-numbers  code-golf  math  number  sequence  code-golf  array-manipulation  integer  code-golf  number  array-manipulation  code-golf  number  sequence  decision-problem  code-golf  ascii-art  number  code-challenge  sequence  arithmetic  sorting  code-golf  date  fastest-algorithm  code-golf  string  number  random  combinatorics  code-golf  combinatorics  code-golf  ascii-art  base-conversion  code-golf  array-manipulation  code-golf  string  code-golf  string  number  arithmetic  code-golf  kolmogorov-complexity  code-golf  string  array-manipulation  json  code-golf  puzzle-solver  code-golf  binary  graph-theory  code-golf  arithmetic  haskell  code-golf  string  cipher  code-golf  code-golf  string  parsing  alphabet  code-golf  string  code-golf  ascii-art  code-golf  string  number  code-golf  string  balanced-string 

2
거리 시퀀스가 ​​다른 모든 거리와 얼마나 떨어져 있는지 계산
길이가 같은 두 줄 사이 의 해밍 거리는 해당 기호가 다른 위치 수입니다. 하자 P길이의 이진 문자열 n과 T길이의 이진 문자열 2n-1. 왼쪽에서 오른쪽으로 순서대로 모든 길이의 하위 문자열 n사이 의 해밍 거리를 계산하여 배열 (또는 목록)에 넣을 수 있습니다.PnT 해밍 거리 시퀀스 예 하자 P = 101및 T = …

11
느슨한 범위 해석
느슨한 범위 해석 ListSharp 는 많은 기능을 가진 해석 된 프로그래밍 언어입니다. 이러한 기능 중 하나는 다음과 같은 1 인덱스 기반 범위 작성자입니다. 범위를 정의 (INT) TO (INT)하거나 (INT)둘 다 또는 단일 int가 min에서 max int32 값으로 갈 수있는 곳을 정의하십시오. 그런 다음 해당 범위를 사용하여 배열의 경계를 넘길 염려없이 …
13 code-golf  array-manipulation  parsing  code-golf  string  ascii-art  kolmogorov-complexity  code-challenge  code-golf  sequence  code-golf  number  array-manipulation  sorting  code-golf  string  function  code-golf  arithmetic  code-golf  math  sequence  number-theory  primes  restricted-source  javascript  code-challenge  polyglot  rosetta-stone  code-golf  code-golf  regular-expression  code-golf  math  code-golf  math  primes  code-golf  ascii-art  kolmogorov-complexity  binary  code-golf  math  sequence  code-golf  sequence  subsequence  code-golf  string  code-golf  parsing  music  code-golf  grid  game  path-finding  board-game  code-golf  string  binary  code-golf  array-manipulation  balanced-string  code-golf  code-golf  algorithm  code-golf  string  number  arithmetic  array-manipulation  code-golf  array-manipulation  binary-tree  tree-traversal  code-golf  code-golf  tips  code-golf  string  base-conversion  code-golf  tips  s.i.l.o.s  code-golf  string  ascii-art  code-golf  code-challenge  code-golf  game 

4
Getters 받기
작업 모두가 자동 코드 생성을 좋아하고 작업하는 동안 시간을 ​​절약한다고 생각합니다. 낮에는 많은 클래스와 멤버를 만들어야하며 모든 클래스와 멤버를 getters수동으로 만들고 싶지는 않습니다 . 작업은 getters모든 클래스 멤버를 위해 자동으로 생성되는 프로그램 또는 함수를 작성하는 것입니다. 입력 우리의 언어에서 객체는 매우 간단합니다. 클래스와 멤버의 이름은 [a-zA-Z]문자로 시작해야 하며 문자 만 …
13 code-golf  string  syntax  code-golf  math  primes  rational-numbers  code-golf  graphical-output  image-processing  code-golf  kolmogorov-complexity  music  audio  code-golf  string  code-golf  math  geometry  code-golf  math  sequence  combinatorics  code-golf  game  grid  board-game  code-golf  restricted-source  array-manipulation  source-layout  code-golf  base-conversion  binary  code-golf  math  physics  code-golf  math  number  date  expression-building  code-golf  array-manipulation  graph-theory  decision-problem  popularity-contest  error-correction  code-golf  kolmogorov-complexity  geometry  grid  code-challenge  arithmetic  combinatorics  set-partitions  code-golf  kolmogorov-complexity  sequence  fibonacci  code-golf  restricted-source  pristine-programming  code-golf  code-golf  string  kolmogorov-complexity  code-golf  arithmetic  code-golf  string  parsing  code-golf  code-golf  sorting  counting  permutations  3d  code-golf  code-golf  ascii-art  music  code-golf  string  code-golf  string  ascii-art  code-golf  string  code-golf  quine  polyglot  code-golf  math  string  code-golf  internet 

3
Brainfuck의 비트 연산자
당신의 임무는 다음 각 이진 연산자 각각에 대해 하나의 brainfuck 프로그램을 만드는 것입니다. 각 프로그램은 입력에서 하나 또는 두 개의 8 비트 숫자 (A 및 B)를 가져 와서 지정된 연산을 계산해야합니다. A XOR B A AND B A OR B A Shifted Left by 1 (circular shift) NOT A 5를 …
13 code-golf  binary  brainfuck  code-golf  code-golf  ascii-art  random  code-golf  code-golf  code-challenge  sorting  code-golf  code-challenge  java  code-golf  statistics  code-golf  code-challenge  fastest-code  code-golf  math  code-golf  math  kolmogorov-complexity  code-golf  code-golf  array-manipulation  combinatorics  code-golf  kolmogorov-complexity  popularity-contest  underhanded  code-golf  math  floating-point  code-golf  interpreter  code-golf  music  code-golf  code-golf  cryptography  code-challenge  scrabble  code-golf  code-challenge  popularity-contest  quine  code-golf  quine  cryptography  code-golf  kolmogorov-complexity  code-golf  printable-ascii  code-golf  chess  code-golf  math  number-theory  code-challenge  c  code-golf  random  popularity-contest  hello-world  code-shuffleboard  code-golf  compression  grammars  code-golf  tips  code-golf  sequence  code-golf  string  code-challenge  sorting  permutations  code-golf  string  code-challenge  optimization  code-golf  interpreter  code-challenge  string  code-golf  math  number  fibonacci  string  compression  c#  code-golf  chemistry  popularity-contest  math  c  c++  java  code-golf  math  function  code-golf  complex-numbers  code-golf  geometry 

22
번갈아가는 번짐
소개 이 문제를 해결하려면 정수 이진 표현의 후행 0을로 설정해야합니다 010101….이 예는 다음과 같이 가장 잘 설명됩니다. integer가 주어지면 400첫 번째 단계는 이진수로 변환하는 것입니다. 110010000 우리가 볼 수 있듯이 다섯 번째 비트는 최하위 1비트이므로 거기에서 시작하여 하위 0을 0101다음과 같이 바꿉니다 . 110010101 마지막으로 우리는 이것을 십진수로 다시 변환합니다 …

18
십진수에 대한 모든 이진 조합
기권 이 질문의 중복없는 이 질문에 . 초기 매개 변수에 이미 설정된 숫자가 있으므로 특정 숫자를 세지 않습니다. 이 질문은 제공된 숫자를 기준으로 이진 문자열로 구성 할 수있는 10 진수에 중점을 둡니다. 도전 주어 두 정수 X와 Y, 제로의 개수를 나타내는 ( 0)과 1 ( 1)는 각각 전용 제로 제공된 …
12 code-golf  binary 

2
Kipple을 해석하십시오!
소개 Kipple 은 2003 년 3 월 Rune Berg가 발명 한 스택 기반의 난해한 프로그래밍 언어입니다. Kipple에는 27 개의 스택, 4 개의 연산자 및 제어 구조가 있습니다. 스택 스택은 이름이 지정됩니다 a- z및 32 비트 부호있는 정수가 포함되어 있습니다. @숫자를보다 편리하게 출력 할 수 있도록 특수 스택이 있습니다 . 숫자를로 …
12 code-golf  interpreter  code-golf  string  code-golf  math  string  code-golf  ascii-art  path-finding  code-golf  string  ascii-art  code-golf  interpreter  binary  logic-gates  logic  code-golf  ascii-art  code-golf  graph-theory  code-golf  string  code-golf  number  sorting  code-golf  number-theory  random  cryptography  polynomials  code-golf  number  code-golf  math  number  sequence  code-golf  quine  code-generation  code-golf  arithmetic  set-theory  code-golf  sequence  code-golf  code-golf  string  math  fastest-code  optimization  code-golf  code-golf  internet  stack-exchange-api  code-golf  array-manipulation  code-golf  string  internet  string  code-challenge  internet  test-battery  code-golf  math  pi  code-golf  arithmetic  primes  code-golf  array-manipulation  code-golf  string  code-golf  string  palindrome  code-golf  sequence  number-theory  fastest-algorithm  code-golf  math  number  base-conversion  code-golf  number-theory  sorting  subsequence  search  code-golf  permutations  code-challenge  popularity-contest  code-generation 

4
담당자를 다시 계산하십시오!
몇 달 전, 우리는 질문에 대한 찬사를받는 사람들의 명성을 높이는 것에 대한 메타 에 대해 토론했습니다 . 투표에 대한 현재 평판 시스템의 기본 사항은 다음과 같습니다. 1 공감대 U는 5 점의 가치가 있습니다. 답은 공평 u10 가치가 있습니다. 질문이나 답변 downvote d는 -2 평판이 가치가 있습니다. 새로운 시스템에 대한 여러 …

14
객관식 시험 준비
소개 참고 : 이것은 부정 행위를 조장하는 일종의 방법이 아닙니다. 로 Cᴏɴᴏʀ O'Bʀɪᴇɴ는 3 : 이미 공부는 시험을 통과하기위한 최적의 솔루션입니다 말했다. 객관식 시험에 대한 다음 답변을 고려하십시오. ABCBCAAB 다음은 답변이 일치하는지 여부를 나타내는 표입니다. A B C B C A A B A 1 0 0 0 0 1 …

11
이진 암호화
이것은 xkcd # 153을 기반으로 합니다. 2 개의 매개 변수를 갖는 프로그램 또는 명명 된 함수를 작성하십시오. 각 매개 변수는 문자열 또는 바이트 또는 문자의 목록 또는 배열입니다. 두 번째 매개 변수에는 문자 lrfu(또는 동등한 ASCII 바이트) 만 사용됩니다. 첫 번째 매개 변수로 표시되는 비트 시퀀스에서 수행되는 일련의 명령으로 해석되어야합니다. …

16
비트 폭 n의 그레이 코드 목록을 줘
그레이 코드는 n연속적인 숫자가 1 비트에서만 다른 2 진 비트 폭의 시퀀스입니다 (예제 출력 참조). 참고 입력 예 : 3 출력 예 : 000 001 011 010 110 111 101 100 메모: 이 질문에는 속임수 가있는 것처럼 보이지만 그렇지는 않습니다. 왜냐하면 그 질문은 코드 골프가 아니며 다른 출력을 요구하기 때문입니다. …
11 code-golf  binary 

10
모든 기지에서 Fizzbuzz
도전 입력: 2에서 62 사이 의 정수 bbb (포함) 산출: 숫자 에 대한 적절한 표현을 사용하여 에서 에 해당하는 111 에서 까지의 수를 계산 하십시오.5000105000105000_{10}bbb 하나: 숫자를 로 나눌 수있는 경우 (반올림 됨, 예를 들어 7은 7 / 2 = 3.5, 3.5 + 1 = 4.5, 4로 반올림 됨 ) …
10 code-golf  math  binary 

12
Quine는 바이너리로 자체 출력
작업을 수락하려면 바이너리 UTF-8 표현 으로 자체 소스 코드를 출력하는 프로그램을 작성해야합니다 . 규칙 소스의 길이는 1 바이트 이상이어야합니다. 프로그램은 입력을 받지 않아야합니다 (또는 사용되지 않은 빈 입력이 없어야합니다 ). 출력은 모든 형식이 될 수 있습니다. 선택적 후행 줄 바꿈이 허용됩니다. 1 바이트는 8 비트이며 이진 UTF-8 표현의 길이는 8의 …

3
블라인드 이진 가산기
두 개의 상자가 B(x)있고 B(y)각각에 알 수없는 비트 -0 또는 1 F이 포함되어 있고 X-ray를 수행하고 B(x^y)( xor )에 대한 세 번째 상자를 생성 할 수 있는 기계가 있다고 가정합니다 . ( 및 )를 F계산할 수도 있습니다 . 실제로, 이는 기계가 각각 내부 제품을 수행 할 수있는 단일 작업의 특수한 …

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