«sorting» 태그된 질문

이 과제는 일부 데이터 집합을 정렬, 정렬 또는 구성하여 해결하기위한 것입니다.

2
BrainF에서 QuickSort 구현 ***
스택 오버플로의 라운지 룸에서 논의한 바와 같이 : 최소한의 지식만으로 en.wikipedia.org/wiki/Quicksort에 Quicksort 알고리즘을 구현할 수없는 경우 다른 직업을 고려할 수 있습니다. s 그러나 SBI는 또한 BrainF ***가 예외라고 지적했다. 여기 퍼즐 / 도전이 있습니다 : BrainF *** 에서 QuickSort를 구현하십시오 . 구현은 반드시 에 의해 해석 이 및 / 또는 …

6
교과서 정렬
교과서 정렬 학교가 곧 시작되고 있습니다 (아직 그렇지 않은 경우). 이제 교과서를 정리할 차례입니다. 사전 순으로 책을 정렬해야하지만 너무 오래 걸리므로 프로그램을 작성하기로 결정했습니다. 예 입력: _ | | _ |F| | | |o|_|P| |o|B|P| | |a|C| | |r|G| |_|_|_| 산출: _ | |_ |F| | _|o|P| |B|o|P| |a| |C| …

30
2의 거듭 제곱의 합
도전 x여기에 정수 입력 이 주어지면 합이 주어지면 1 <= x <= 2552의 거듭 제곱의 결과를 반환하십시오 x. 예 주어진 입력 : 86 프로그램은 다음을 출력해야합니다 : 64 16 4 2 입력: 240 산출: 128 64 32 16 입력: 1 산출: 1 입력: 64 산출: 64 합계에 특정 2의 거듭 …
31 code-golf  binary  code-golf  sequence  integer  chess  code-golf  number  arithmetic  matrix  code-golf  code-golf  combinatorics  grid  set-partitions  code-golf  array-manipulation  graph-theory  code-golf  number  code-golf  string  decision-problem  code-golf  matrix  cellular-automata  3d  code-challenge  restricted-source  printable-ascii  code-golf  board-game  code-golf  geometry  grid  code-golf  word-puzzle  code-golf  matrix  sorting  code-golf  code-golf  string  decision-problem  code-golf  matrix  cellular-automata  code-golf  decision-problem  code-golf  math  number  arithmetic  restricted-source  code-golf  code-golf  number  integer  matrix  code-golf  date  code-golf  matrix  code-golf  sequence  combinatorics  chemistry  code-golf  array-manipulation  popularity-contest  code-golf  code-golf  natural-language  code-golf  number  integer  sorting  substitution  code-golf  string  number  date  encode  code-golf  decision-problem  code-golf  string  subsequence  code-golf  string  alphabet  code-golf 

8
이 제임스 본드 등급 정렬
소개 제 할아버지는 제임스 본드의 팬이지만 자신이 좋아하는 배우의 순위를 매기는 방법을 항상 확신하지 못합니다. 따라서 그는 항상 목록을 작성하고 있으며 이는 많은 작업입니다. 그는 나에게 인생을 편하게 해줄 프로그램을 만들어달라고 요청했지만 그럴 시간이 없다. 나는 일해야한다! 그래서 나는 너희들을 의지 할 것이다. 도전 도전은 간단합니다. 입력은 다음 형식의 목록으로 …

20
파로는 배열을 섞는다
파로 셔플은 자주 "셔플"갑판에 마술사가 사용하는 기술입니다. 파로 셔플을 수행하려면 먼저 데크를 2 등반으로 자른 다음 2 반부를 인터리브하십시오. 예를 들어 [1 2 3 4 5 6 7 8] 파로가 섞여있다 [1 5 2 6 3 7 4 8] 이것은 여러 번 반복 될 수 있습니다. 흥미롭게도, 이것을 충분히 반복하면 …
31 code-golf  permutations  card-games  code-golf  graphical-output  random  code-golf  image-processing  color  code-golf  primes  code-golf  math  arithmetic  combinatorics  decision-problem  code-golf  sequence  number-theory  binary  code-golf  number-theory  set-theory  code-golf  hashing  code-golf  game  card-games  code-golf  ascii-art  code-golf  arithmetic  array-manipulation  jelly  code-golf  string  array-manipulation  code-golf  sorting  code-challenge  code-golf  number  date  binary  code-golf  arithmetic  code-golf  math  number  linear-algebra  polynomials  code-golf  ascii-art  code-golf  grid  decision-problem  code-golf  string  combinatorics  code-golf  string  kolmogorov-complexity  arithmetic  date  code-golf  number  data-structures  code-golf  ascii-art  kolmogorov-complexity  code-golf  string  ascii-art  code-golf  ascii-art  kolmogorov-complexity  code-golf  array-manipulation 

17
일종의 퀴
string이 주어지면 소스 코드의 표시 순서에 따라 x문자를 x정렬 하여 출력하십시오 . 예 Source: ThisIs A Test Input: Is it a Test? Output: TissI etta? Source: Harry - yer a wizard. Input: I'm a what? Output: aa wh'?Imt Source: Mr. H. Potter, The Floor, Hut-on-the-Rock, The Sea Input: Output: 규칙 …

8
병합 정렬 시각화
병합 정렬 은 주어진 목록을 반으로 나누고 작은 목록을 재귀 적으로 정렬 한 다음 다시 정렬 된 목록으로 병합하여 작동하는 정렬 알고리즘입니다. 재귀의 기본 사례는 싱글 톤 목록에 도달하는데,이 목록은 더 이상 분할 할 수 없지만 정의에 따라 이미 정렬되어 있습니다. 목록에서 알고리즘의 실행은 [1,7,6,3,3,2,5]다음과 같은 방식으로 시각화 할 수 …

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 

8
깨지기 쉬운 Quine
깨지기 쉬운 Quine 깨지기 쉬운 퀴는 평가할 때 단일 문자를 제거하여 만든 각 하위 문자열을 갖는 속성을 만족시키는 퀴니로, 오류가 발생합니다. 예를 들어. 프로그램 asdf이 퀴인 경우 프로그램 이 깨지기 쉬운 경우 다음 프로그램에서 오류가 발생해야합니다. sdf adf asf asd 프로그램과 모든 하위 문자열은 완전히 결정적이어야하며 동일한 언어 여야합니다. 결국 …
30 code-golf  quine  code-golf  date  code-golf  sequence  code-golf  sorting  file-system  code-golf  code-golf  ascii-art  hexagonal-grid  code-golf  string  arithmetic  code-golf  code-golf  code-challenge  source-layout  code-golf  ascii-art  cellular-automata  code-golf  string  arithmetic  balanced-string  code-golf  number  primes  code-golf  ascii-art  hexagonal-grid  code-golf  string  code-golf  string  code-golf  sequence  code-golf  ascii-art  code-golf  conversion  hexadecimal  code-challenge  restricted-source  code-golf  math  grid  code-golf  string  ascii-art  code-golf  random  minesweeper  code-golf  ascii-art  kolmogorov-complexity  board-game  scrabble  code-golf  ascii-art  code-golf  math  number-theory  decision-problem  code-golf  string  code-golf  natural-language  code-golf  internet  stack-exchange-api  code-golf  code-golf  conversion  code-golf  string  code-golf  math  arithmetic  code-golf  string  whitespace  code-golf  graphical-output  internet  code-golf  string  code-golf  string  random  permutations  code-golf  string  code-golf  string 

29
인터리브 문자열
영감. * 이전에이 문제를 겪지 않았다고 믿을 수 없습니다. 태스크 하나 이상의 인쇄 가능한 ASCII 문자열이 주어지면 각 문자열에서 하나의 문자를 주기적으로 문자가 없어 질 때까지 인터리브하십시오. 문자열에 다른 문자보다 문자가 부족한 경우 해당 문자열을 건너 뛰십시오. 예 SIMPLE 준다 SIMPLE POLLS그리고 EPEES준다PEOPLELESS LYES그리고 APRONS준다LAYPERSONS ABCDE및 a c및 123 567제공Aa1B …

17
SE 게시물에 상위 5 개의 댓글 점수 표시
스택 교환 스크립트는 질문 또는 답변에 대한 5 가지 의견이 사이트의 메인 페이지에서 처음에 의견 수를 통해 표시되는 것을 결정합니다. 가장 많은 표를 얻은 5 개의 의견이 표시됩니다. 당신의 임무는이 동작을 재현하는 것입니다. STDIN, 명령 줄 인수 또는 함수 인수를 통해 입력을받는 전체 프로그램 또는 함수를 작성하고 상위 5 개의 …

26
그 변수를 화살표!
도전 Robin은 변수를 화살표 모양으로 선언하는 것을 좋아합니다. 그가하는 방법은 다음과 같습니다. 임의 개수의 문자열 입력 오름차순으로 주문 다음과 같이 음의 화살촉을 형성하기 위해 중간 순서로 출력하십시오 (골프가 가장 좋은 순서). 5 or 4 3 2 1 1 2 3 4 5 테스트 사례 입력: bow arrows sheriffOfNottingham kingRichard maidMarian …

8
플롭하는 방법을 알려주세요
컴퓨터 과학자는 아마도 팝 및 푸시 의 기본 목록 작업에 익숙 할 것입니다 . 요소 목록을 수정하는 간단한 작업입니다. 그러나 작동 플롭에 대해 들어 본 적이 있습니까? ( 플립 플롭 에서와 같이 )? 꽤 간단합니다. 숫자 n이 주어지면 목록 의 처음 n 요소를 반대로 바꿉니다 . 예를 들면 다음과 같습니다. …

8
중력 정렬 수행
도전 정수 목록이 주어지면 중력 정렬이 어떻게 수행되는지 보여줍니다. 중력 정렬 중력 정렬에서 숫자를 별표의 행으로 상상하십시오. 그런 다음 모든 것이 떨어지고 새 행이 분명히 정렬됩니다. 예를 보자. [2, 7, 4, 6]: ** ******* **** ****** ------- ** **** ******* ****** ------- ** | 2 **** | 4 ****** | …

21
지수와 가치 교환
작업 그 입력리스트 / 배열되는 프로그램이나 함수 작성 X 출력 정수와 정수의 집합의 목록 Y , 이러한 각 요소에 대한 예를 각 세트 Y [ I ], X [ E ] = I , 및 Y 의 집합에있는 요소의 총 수가 X 의 요소 수와 같도록합니다 . (이것은 기본적으로 배열에 …

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