이들은 ASCII 민들레입니다.
\|/ \ / |
/|\ | \|/ |
| | | _\|/_
| | | /|\
ASCII 민들레에는 줄기 길이 (1과 256 사이의 양수, 시드 수 (0과 7 사이의 양수) 및 방향 (^ 또는 v)의 세 가지 매개 변수가 있습니다. 위의 민들레에는 길이, 시드 및 방향에 대한 것이 있습니다. 3,5, ^), (3,2, ^), (2,3, ^) 및 (3,7, v).
씨앗은 길이가 2 인 민들레에 표시된 다음 순서로 채워집니다 (헤드 다운 민들레의 경우 뒤집어 짐).
seeds: 0 1 2 3 4 5 6 7
| \ / \|/ \ / \|/ _\ /_ _\|/_
| | | | /|\ /|\ /|\ /|\
| | | | | | | |
도전 과제 :
ASCII 민들레를 입력으로 제공하고 길이, 시드 수 및 방향을 위의 예와 유사하게 형식화하고 해당 형식의 매개 변수가 해당 매개 변수와 함께 ASCII 민들레를 리턴하는 프로그램 / 함수를 작성하십시오. 괄호를 무시하고 입력 / 출력이 숫자, 쉼표, 숫자, 쉼표 및 ^
또는 중 하나라고 가정 할 수 있습니다 v
. 'up'/ 'down'(예 : / ) 으로 쉽게 해석 될 수있는 한 다른 문자를 ^
/로 대체 v
할 수 있습니다 . (2,1, ^) 및 (3,0, ^) 또는 (2,1, ^) 및 (2,1, v)와 같이 똑같이 보이는 민들레를 구별 할 필요는 없습니다. ASCII 기술을 고려하면 매개 변수 세트 중 하나가 허용 가능한 출력이고 두 매개 변수 세트 모두 동일한 ASCII 기술을 제공 할 수 있습니다.u
d
이것은 code-golf 이므로 바이트 단위의 가장 짧은 코드가 이깁니다.
C #의 예제 프로그램 (약간 골프를 타지 않았 음) :
string Dandelion(string s)
{
if (s.Contains(','))
{
//got parameters as input
string[] p = s.Split(',');
//depth and width (number of seeds)
int d = int.Parse(p[0]);
int w = int.Parse(p[1]);
//draw stem
string art = " |";
while (d > 2)
{
d--;
art += "\n |";
}
//draw head
string uhead = (w % 2 == 1 ? "|" : " ");
string dhead = uhead;
if (w > 1)
{
uhead = "\\" + uhead + "/";
dhead = "/" + dhead + "\\";
if (w > 5)
{
uhead = "_" + uhead + "_\n /|\\";
dhead = "_\\|/_\n " + dhead;
}
else if (w > 3)
{
uhead = " " + uhead + " \n /|\\";
dhead = " \\|/ \n " + dhead;
}
else
{
uhead = " " + uhead + " \n |";
dhead = " |\n " + dhead;
}
}
else
{
uhead = " " + uhead + "\n |";
dhead = " |\n " + dhead;
}
//add head to body
if (p[2] == "^")
{
return uhead + "\n" + art;
}
return art + "\n" + dhead;
}
else
{
//ASCII input
string[] p = s.Split('\n');
int l = p.Length - 1;
int offset = 0;
//find first non-' ' character in art
while (p[0][offset] == ' ')
{
offset++;
}
int w = 0;
if (p[0][offset] == '|')
{
//if '|', either head-down or no head.
if (offset == 0 || p[l][offset - 1] == ' ')
{
//if no space for a head to the left or no head at the bottom, no head.
return l.ToString() + ",1,^";
}
//head must have at least size 2, or else indistinguishable from no head case
w = 6;
if (p[l][offset] == '|')
{
//odd sized head
w = 7;
}
if (offset == 1 || p[l - 1][offset - 2] == ' ')
{
//not size 6 or 7
w -= 2;
if (p[l - 1][offset - 1] == ' ')
{
//not size 4 or 5
w -= 2;
}
}
return l.ToString() + "," + w.ToString() + ",v";
}
else if (p[0][offset] == '\\')
{
//head at least size 2 and not 6/7, or indistinguishable from no head.
w = 4;
if (p[0][offset + 1] == '|')
{
w = 5;
}
if (p[1][offset] == ' ')
{
w -= 2;
}
}
else
{
w = 6;
if (p[0][offset + 2] == '|')
{
w = 7;
}
}
return l.ToString() + "," + w.ToString() + ",^";
}
}
^
및v
?