«sorting» 태그된 질문

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

29
알파벳 순서로 숫자 재정렬
음수가 아닌 정수 ( n)가 주어진 경우 n의 각 숫자의 문자 철자에 따라 알파벳 순서로 반환되는 함수를 만듭니다 n. 예 : Input: 101 >> one, zero, one >> one, one, zero Output: 110 Input: 31948 >> three, one, nine, four, eight >> eight, four, nine, one, three Output: 84913 Input: …

9
3 x 3 개의 견고한 정사각형 모두 인쇄
(a와 유사한 견고한 사각형 매직 스퀘어 ) N의 정수 (1)의 구성 인 2 매 2에 의한 아 격자는 동일한 금액을 갖도록한다는 N N 의한 격자. 예를 들어, N = 3 인 경우 하나의 견고한 사각형은 1 5 3 9 8 7 4 2 6 네 개의 2x2 하위 그리드 1 …
24 code-golf  number  arithmetic  number-theory  grid  code-golf  binary  code-golf  popularity-contest  code-golf  chemistry  code-golf  code-golf  date  code-golf  quine  chess  code-golf  hexadecimal  code-golf  number  arithmetic  sequence  array-manipulation  code-golf  math  date  code-golf  typography  code-golf  string  code-golf  string  code-golf  code-golf  math  arithmetic  array-manipulation  grid  code-golf  puzzle-solver  code-golf  music  audio  code-golf  decision-problem  code-golf  geometry  code-golf  number  bitwise  code-golf  string  metagolf  hexagonal-grid  code-golf  string  code-golf  sorting  popularity-contest  code-golf  game  sequence  base-conversion  binary  code-golf  decision-problem  graph-theory  natural-language  code-golf  math  parsing  optimized-output  code-golf  array-manipulation  code-golf  graphical-output  image-processing  tiling  code-golf  graph-theory  path-finding  chess  code-golf  code-golf  balanced-string  code-golf  number  code-golf  sequence  code-golf  math  arithmetic  statistics  code-golf  chemistry 

20
주문 모방
두 개의 숫자 목록, 소스 와 패턴)이 패턴 의 상대 순서와 일치하도록 소스를 재정렬하십시오. 재정렬 된 소스의 두 항목은 패턴의 동일한 위치에있는 항목과 동일한 방식으로 비교해야합니다. 예를 들어, 입력 s = [-5, 9, 4, 13, 11, -6, 0] p = [7, -4, 1, -8, 4, -3, 12] 결과를 산출해야한다 [11, …

25
가장 큰 자릿수로 정렬
도전: 정수 목록이 주어지면 가장 큰 단일 숫자로 내림차순으로 정렬하십시오. 가장 큰 자릿수를 가진 숫자의 순서는 두 번째로 큰 자릿수 등으로 정렬됩니다 . 숫자의 중복 자릿수는 무시합니다. 숫자의 모든 숫자가 동일하면 목록에서 해당 숫자의 순서는 원하는 방식으로 지정할 수 있습니다. 예: Input: [123, 478, -904, 62778, 0, -73, 8491, 3120, …

26
단어의 순위를 찾으십시오
정의 단어의 순위는 단어의 의미와 상관없이 사전에서와 같이 문자의 가능한 모든 순열 (또는 배열)이 사전 순으로 정렬 될 때 단어의 위치로 정의됩니다. 이 두 단어 "blue"와 "seen"을 고려해 봅시다. 우선, 우리는이 단어의 글자의 가능한 모든 배열을 알파벳 순서로 씁니다. "blue": "belu","beul","bleu","blue","buel","bule","eblu","ebul","elub","elbu","eubl", "eulb","lbeu","lbue","lebu","leub","lube","lueb","ubel","uble","uebl","uelb", "ulbe","uleb" "seen": "eens","eesn","enes","ense","esen","esne","nees","nese","nsee","seen", "sene","snee" 이제 왼쪽에서 살펴보고 필요한 …

30
확실하게 깨진 정렬
적어도 3 개의 별개의 항목을 포함하는 양의 정수 목록이 제공되면 오름차순 또는 내림차순으로 정렬되지 않은 해당 목록의 순열을 출력하십시오. 예 1,2,3 -> 2,1,3 or 3,1,2 or 1,3,2 or 2,3,1 1,2,3,3 -> 2,1,3,3 or 3,1,2,3 or 1,3,2,3 etc.. 제목에 @Arnauld와 @NoOneIsHere 감사합니다!

25
문자가 감소하는 동안 숫자가 증가합니다
이 스택 오버플로 질문에서 영감을 얻었습니다 . 목록 정렬 : 오름차순 숫자, 내림차순 문자 . 당신의 임무는 다음과 같은 문제를 해결하는 것입니다. 이것이 code-golf 이므로 가능한 적은 바이트로 해결해야합니다. 당신은 입력 문자를 포함하는 등 개체의 목록이 소요됩니다 (합리적인 형태 : string, char, 등)와 숫자를. 그런 다음 숫자를 오름차순으로 정렬하고 문자를 …

2
"하위 벡터 반전"을 사용하여 정렬 최적화
이것은 가장 적은 반전을 사용하여 벡터를 오름차순으로 정렬하는 것이 가장 적은 작업 문제입니다. 알고리즘은 "하위 벡터 반전" 1을 사용하여 벡터를 정렬 할 수 있지만 산술 연산, 루프, 정렬 여부 확인 등을 위해 다른 연산을 사용할 수 있습니다. 알고리즘이 수행하는 하위 벡터 반전의 수는 점수입니다. 1 "하위 벡터 반전": 벡터에서 숫자 …

3
번트 팬케이크 문제
이 도전은 팬케이크 뒤집기 와 관련이 있습니다. 팬케이크 정렬에 대해 들어 보았을 것 입니다. 팬케이크 스택은 팬케이크가 접시에서 가장 작은 것까지 정렬 될 때까지 주걱을 스택에 넣고 주걱 위의 모든 팬케이크를 뒤집어 크기별로 정렬합니다. 탄 팬케이크 문제는 약간 다릅니다. 모든 팬케이크에는 이제 구운 한쪽면이 있으며, 분류가 완료되면 각 팬케이크의 탄 …

11
공정한 순위 가치
태스크 정수 x 1 … x n 의 입력 목록이 주어지면 x r 1 ≤ x r 2 ≤… ≤ x r n이 되도록 순위 r 1 … r n (순열 {1… n} ) 의 목록을 계산하십시오 . 그리고, 각 X 나 , 모든 값의 순위의 산술 평균하여 순위를 교체 …

9
중첩 된 목록 정렬
중첩 목록을 정렬하는 프로그램이나 함수를 작성해야합니다. 중첩 목록을 정렬하는 규칙은 다음과 같습니다. 이 목록을 예로 들어 보겠습니다. ((5, 2), 2, 7, (2, 1, (3, 4)), 9) 이 목록의 각 요소에는 "우선 순위"가 있습니다. 요소는 숫자 또는 하위 목록으로 계산됩니다. 먼저 동일한 깊이에서 각 요소의 우선 순위를 가져옵니다. 요소가 숫자 인 …

3
이 채권 등급 정렬
작업 신용 평가 기관 발행자의 신용 가치 있음에 따라 채권에 할당 평가하고 "큰 세"신용 평가 기관도 비슷한 (하지만 동일하지)를 사용 계층 평가 시스템을 . S & P 계층, ​​AAA> AA +> AA> AA-> A +> ...> BBB> B> ...> C를 사용하여 명확하고 논리적 인 순서를 갖습니다. Moody 's는 유사한 시스템을 …

15
기하학적 도전
모두 기하학을 좋아합니다. 그렇다면 왜 골프를 치고 코딩하지 않습니까? 이 도전은 문자와 숫자를 받아 그것에 따라 모양을 만드는 것입니다. 입력 입력 형식은 (shapeIdentifier)(size)(inverter)입니다. 그러나 shapeIdentifier, 크기 및 인버터는 무엇입니까? 모양 식별자는 *s 로 만들 모양의 유형에 대한 식별자입니다 . 다음은 모양 식별자입니다. s -광장 t -삼각형 크기는 사이 1-20이며 그림의 …
23 code-golf  string  ascii-art  geometry  code-golf  ascii-art  subsequence  fewest-operations  test-battery  code-golf  array-manipulation  bitwise  code-golf  interactive  code-golf  music  code-golf  string  kolmogorov-complexity  code-golf  string  decision-problem  simulation  code-golf  string  classification  code-golf  sequence  base-conversion  palindrome  code-golf  kolmogorov-complexity  code-golf  date  astronomy  code-golf  sequence  base-conversion  code-golf  geometry  combinatorics  code-golf  string  code-golf  math  array-manipulation  code-challenge  math  code-golf  card-games  code-challenge  array-manipulation  sorting  code-golf  code-golf  math  abstract-algebra  polynomials  code-golf  palindrome  factoring 

23
ASCII 아트 팔각형
입력 integer가 주어지면 문자 n > 1로 구성된 측면 길이를 가진 ASCII 아트 팔각형을 출력하십시오 n. 아래 예를 참조하십시오. n=2 ## # # # # ## n=3 ### # # # # # # # # # # ### n=4 #### # # # # # # # # # …
22 code-golf  ascii-art  code-golf  geometry  code-golf  balanced-string  code-golf  cops-and-robbers  code-challenge  cops-and-robbers  code-golf  code-golf  random  cryptography  code-golf  array-manipulation  number  code-challenge  integer  code-golf  math  integer  code-golf  math  math  parsing  image-processing  test-battery  math  number  combinatorics  fastest-code  code-golf  code-golf  math  number-theory  rational-numbers  polynomials  code-golf  math  geometry  code-golf  code-golf  number-theory  primes  factoring  code-golf  restricted-source  code-golf  string  decision-problem  counting  code-golf  math  sequence  fibonacci  code-golf  array-manipulation  counting  code-golf  array-manipulation  number-theory  code-golf  array-manipulation  code-golf  random  code-golf  string  hexadecimal  code-golf  string  code-challenge  sorting  code-golf  number  floating-point  code-golf  sorting  code-golf  decision-problem  fibonacci  code-golf  number  combinatorics  code-golf  string  code-golf  math  code-golf  electrical-engineering  code-golf  javascript  code-golf  base-conversion  code-golf  array-manipulation  matrix  binary-matrix  code-golf  kolmogorov-complexity  python  perl  ruby  code-golf  number  code-golf  optimization  integer-partitions  code-golf  string  code-golf  ascii-art 

24
ogl-edocf 도전
입력 범위의 ASCII 문자로 구성된 비어 있지 않은 섞인 문자열 입니다.[ 32..126 ][32..126][32..126] 산출 입력 문자열에 연속적인 회전을 적용하여 출력을 얻습니다. [a-zA-Z]입력 문자열의 각 문자 ( )에 대해 왼쪽에서 오른쪽으로 : 문자가 대문자 인 경우 모든 문자를 왼쪽으로 한 위치 씩 회전 문자가 소문자 인 경우 오른쪽 앞의 한 위치 …
22 code-golf  string  code-golf  string  code-golf  string  parsing  brainfuck  code-challenge  python  hello-world  error-message  code-golf  string  code-golf  number  integer  counting  subsequence  code-golf  string  cipher  code-golf  array-manipulation  arithmetic  integer  matrix  code-golf  math  sequence  code-golf  restricted-source  pi  popularity-contest  cops-and-robbers  polyglot  popularity-contest  cops-and-robbers  polyglot  code-golf  file-system  king-of-the-hill  code-golf  number  sequence  integer  rational-numbers  string  code-challenge  source-layout  code-golf  ascii-art  king-of-the-hill  code-golf  array-manipulation  sorting  code-golf  string  code-golf  restricted-source  source-layout  tips  math  code-challenge  permutations  logic-gates  code-golf  number  random  integer  code-golf  math  code-golf  math  number  decision-problem  king-of-the-hill  python  board-game  code-challenge  brainfuck  busy-beaver  code-golf  number  cops-and-robbers  polyglot  obfuscation  answer-chaining  code-golf  number  integer  conversion  code-golf  string  parsing  code-golf  ascii-art  number  king-of-the-hill  javascript  code-golf  source-layout  radiation-hardening  code-golf  array-manipulation  matrix  code-golf  string  graph-theory  code-golf  array-manipulation  decision-problem  code-golf  string  ascii-art  code-golf  string  code-golf  array-manipulation 

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