«checksum» 태그된 질문

30
신용 카드 번호 확인을위한 Luhn 알고리즘
도전 (신용 카드) 번호 확인을위한 Luhn 알고리즘 을 계산 하는 가장 짧은 프로그램 또는 함수 를 작성하십시오 . Luhn 알고리즘 설명 RosettaCode로부터 ,이 챌린지를위한이 알고리즘은 다음과 같은 입력 예와 함께 지정됩니다 49927398716. Reverse the digits, make an array: 6, 1, 7, 8, 9, 3, 7, 2, 9, 9, 4 Double …

30
내 바코드가 유효합니까?
EAN-8 바코드 정보와 8 체크섬 자리의 7 자리 숫자가 포함되어 있습니다. 체크섬은 숫자에 3과 1을 번갈아 곱하고 결과를 더한 다음 10의 다음 배수에서 빼서 계산합니다. 예를 들어, 숫자가 주어지면 2103498: Digit: 2 1 0 3 4 9 8 Multiplier: 3 1 3 1 3 1 3 Result: 6 1 0 …

30
Adler-32 체크섬 계산
배경 Adler-32 는 1995 년 Mark Adler가 발명 한 32 비트 체크섬으로 널리 사용되는 zlib 라이브러리 (Adler도 개발)의 일부입니다. Adler-32는 32 비트 순환 중복 검사 만큼 안정적이지는 않지만 적어도 소프트웨어에서는 훨씬 빠르고 구현하기 쉽습니다. 정의 하자 B가 = [B 1 , ⋯, B의 n은 ] 바이트 배열. B 의 Adler-32 …

30
ISBN-13 체크 숫자 계산
ISBN-13 코드 의 첫 12 자리 숫자가 주어진 경우 적절한 확인 숫자를 계산하고 추가하여 전체 ISBN을 계산 하는 함수를 작성 하십시오. 함수 입력은 ISBN의 처음 12 자리를 포함하는 문자열입니다. 출력은 13 자리 모두를 포함하는 문자열입니다. 공식 사양 문자열 주어진 함수 쓰기 의는 정확히 12 진수 (및 다른 문자)의 전체 구성을, …

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 

22
ISBN-13을 ISBN-10으로 변환
소개 이 과제에서는 해당 코드가 존재한다고 가정하여 ISBN-13 코드가 지정된 도서의 ISBN-10 코드를 생성해야합니다. 이러한 ISBN-13 코드는 다음과 같이 구분 된 여러 부분으로 구성됩니다 -. 978-GG-PPPP-TTT-C 문자 G(그룹), P(게시자), T(제목) 및 C(체크섬)은 모두 한 자리를 나타냅니다. 이 과제의 목적을 위해 그룹화와 계산 C( 이 과제 참조 )은 흥미롭지 않으며이 작업을 …

23
패리티 비트 생성
패리티 비트 체크섬의 간단한 형태 중 하나이다. 먼저, 짝수 또는 홀수의 패리티를 선택해야합니다. 우리가 고른다 고 가정 해 봅시다. 이제 전송할 메시지가 필요합니다. 우리의 메시지가 "푸"라고합시다. 이것은 다음과 같이 바이너리로 작성됩니다. 01000110 01101111 01101111 이제 115의 홀수이므로 메시지 끝에 1 비트를 더 추가해야하며 짝수의 '온'비트를 갖게됩니다. . 이 마지막으로 추가 …

20
숫자를 분해하십시오!
당신의 임무는 아래 형식을 사용하여 숫자를 분해하는 것입니다. 이것은 기본 변환과 유사, 대신을 나열하는 것을 제외시켰다 digits기본에, 당신은 목록 values목록 입력까지 추가하도록. 주어진베이스 인 경우 n, 다음 목록의 각 수의 형식이어야합니다 k*(n**m), 0<=k<n그리고 m목록에서 고유합니다. 명세서 합리적인 입 / 출력 형식 프로그램 / 기능은 2 개의 입력을 받아서 목록을 출력합니다. …
16 code-golf  number  sequence  number-theory  base-conversion  code-golf  bitwise  hashing  code-golf  string  ascii-art  whitespace  code-golf  math  code-golf  code-golf  image-processing  counting  code-golf  math  arithmetic  checksum  code-golf  code-golf  math  arithmetic  number-theory  code-golf  array-manipulation  random  code-golf  string  code-golf  math  ascii-art  base-conversion  code-golf  graphical-output  geometry  3d  code-golf  math  linear-algebra  matrix  code-golf  math  number  sequence  code-golf  array-manipulation  code-golf  math  matrix  linear-algebra  code-golf  number  sequence  counting  code-golf  string  code-golf  string  restricted-source  quine  sorting  code-golf  string  geometry  code-golf  string  code-golf  networking  code-golf  base-conversion  code-golf  math  matrix  code-golf  arithmetic  linear-algebra  matrix  code-golf  number  arithmetic  grid  code-golf  number  source-layout  code-golf  string  bitwise  checksum  code-golf  array-manipulation  code-golf  string  probability-theory  code-golf  tips  code-golf  sequence  code-golf  string  math  sequence  calculus  code-golf  string  palindrome  bioinformatics  code-golf  math  combinatorics  counting  permutations  code-golf  parsing  logic-gates  code-golf  arithmetic  number-theory  combinatorics  code-golf  math  sequence  polynomials  integer  code-golf  string  ascii-art  chess  code-golf  string  code-golf  number  code-golf  string  ascii-art  parsing  code-golf  code-golf  number  natural-language  conversion  code-golf  arithmetic  code-golf  string  code-golf  ascii-art  decision-problem 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.