Estos son dientes de león ASCII:
\|/ \ / |
/|\ | \|/ |
| | | _\|/_
| | | /|\
Los dientes de león ASCII tienen tres parámetros: longitud del tallo (número positivo entre 1 y 256, número de semillas (número positivo entre 0 y 7) y orientación (^ o v). Los dientes de león anteriores tienen longitud, semillas y orientación, ( 3,5, ^), (3,2, ^), (2,3, ^) y (3,7, v) respectivamente.
Las semillas se rellenan en el siguiente orden (volteadas para los dientes de león con la cabeza hacia abajo), ilustradas en un diente de león con longitud 2:
seeds: 0 1 2 3 4 5 6 7
| \ / \|/ \ / \|/ _\ /_ _\|/_
| | | | /|\ /|\ /|\ /|\
| | | | | | | |
El reto:
Escriba un programa / función que, cuando se le da un diente de león ASCII como entrada, devuelve su longitud, recuento de semillas y orientación con un formato similar a los ejemplos anteriores y cuando los parámetros dados en ese formato devuelve un diente de león ASCII con esos parámetros. Puede ignorar el paréntesis y asumir que la entrada / salida será un número, una coma, un número, una coma y cualquiera ^
o v
. Puede sustituir otros caracteres por ^
/ v
siempre que puedan interpretarse fácilmente como 'arriba' / 'abajo' (por ejemplo, u
/ d
). No necesita distinguir entre dientes de león que se ven iguales, como (2,1, ^) y (3,0, ^) o (2,1, ^) y (2,1, v). Dado el arte ASCII, cualquier conjunto de parámetros sería un resultado aceptable, y ambos conjuntos de parámetros pueden dar el mismo arte ASCII.
Este es el código de golf , por lo que gana el código más corto en bytes.
Un programa de ejemplo en C # (ni siquiera ligeramente golfizado):
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() + ",^";
}
}
^
yv
?