forked from mouredev/roadmap-retos-programacion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
arkmiguel379.cs
291 lines (181 loc) · 5.63 KB
/
arkmiguel379.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
// CADENAS DE CARACTERES
using System.Xml.Linq;
string str = "Miguel Angel Moreno";
// Acceso a caracteres especificos
Console.WriteLine("=== ACCESO A CARACTERES ESPECIFICOS === \n");
char primerCaracter = str[0];
char ultimoCaracter = str[18];
Console.WriteLine(primerCaracter);
Console.WriteLine(ultimoCaracter);
Console.WriteLine();
// Subcadenas
Console.WriteLine("=== SUBCADENAS === \n");
string subCadena = str.Substring(7);
string subCadena2 = str.Substring(7,5);
Console.WriteLine(subCadena);
Console.WriteLine(subCadena2);
Console.WriteLine();
// Logitud
Console.WriteLine("=== LONGITUD === \n");
int strLen = str.Length;
Console.WriteLine(strLen);
Console.WriteLine();
// Concatenacion
Console.WriteLine("=== CONCATENACION === \n");
string str1 = "Hola";
string str2 = "Mundo";
Console.WriteLine($"{str1} {str2}");
Console.WriteLine();
// Repeticion
Console.WriteLine("=== REPETICION === \n");
for (int i = 0; i < 3; i++) Console.WriteLine(str);
Console.WriteLine();
// Recorrido
Console.WriteLine("=== RECORRIDO === \n");
foreach (char c in str)
{
Console.WriteLine(c);
}
Console.WriteLine();
// Conversion a mayusculas y minusculas
Console.WriteLine("=== MAYUSCULAS Y MINUSCULAS === \n");
string mayusculas = str.ToUpper();
string minusculas = str.ToLower();
Console.WriteLine(mayusculas);
Console.WriteLine(minusculas);
Console.WriteLine();
// Reemplazo
Console.WriteLine("=== REEMPLAZO === \n");
string reemplazo = str.Replace("Miguel", "Logan");
Console.WriteLine(reemplazo);
Console.WriteLine();
// Division
Console.WriteLine("=== DIVISION === \n");
string[] partes = str.Split(' ');
foreach (string parte in partes)
{
Console.WriteLine(parte);
}
Console.WriteLine();
// Union
Console.WriteLine("=== UNION === \n");
string union = string.Join("-", partes);
Console.WriteLine(union);
Console.WriteLine();
string[] lista = {"1", "2", "3", "4"};
string fusion = string.Join("*", lista);
Console.WriteLine(fusion);
Console.WriteLine();
// Interpolacion
Console.WriteLine("=== INTERPOLACION === \n");
string nombre = "Logan";
int edad = 30;
Console.WriteLine($"Hola me llamo {nombre}, y mi edad es {edad}");
Console.WriteLine();
// Verificacion
Console.WriteLine("=== VERIFICACION === \n");
string programacion = "Programacion en CSharp";
bool contiene = programacion.Contains("en");
bool comienzaCon = programacion.StartsWith("Programacion");
bool terminaCon = programacion.EndsWith("CSharp");
Console.WriteLine($"{contiene} {comienzaCon} {terminaCon}");
Console.WriteLine();
// Comparacion
Console.WriteLine("=== COMPARACION === \n");
string saludo1 = "Hola";
string saludo2 = "Hello";
bool sonIguales = saludo1.Equals(saludo2);
int comparacion = string.Compare(saludo1, saludo2); // Compara dos cadenas y devuelve un valor entero que indica su orden relativo
Console.WriteLine(sonIguales);
Console.WriteLine(comparacion);
Console.WriteLine();
// Eliminacion de espacios en blanco
Console.WriteLine("=== ELIMINACION ESPACIOS EN BLANCO === \n");
string cadenaConEspacios = " Programacion en CSharp ";
string sinEspacios = cadenaConEspacios.Trim();
Console.WriteLine(sinEspacios);
Console.WriteLine();
// Busqueda
Console.WriteLine("=== BUSQUEDA === \n");
int indice = str.IndexOf("Angel");
bool verificacion = str.Contains("Moreno");
Console.WriteLine(indice);
Console.WriteLine(verificacion);
Console.WriteLine();
// ========== EXTRA =============
Console.WriteLine("=== EXTRA === \n");
void AnalyzeWords(string str1, string str2)
{
void Palindromo(string str1, string str2)
{
char[] newStr1 = str1.ToLower().ToCharArray();
Array.Reverse(newStr1);
string Str1R = new (newStr1);
bool like1 = str1.Equals(Str1R);
char[] newStr2 = str2.ToLower().ToCharArray();
Array.Reverse(newStr2);
string Str2R = new (newStr2);
bool like2 = str2.Equals(Str2R);
if (like1 && like2)
{
Console.WriteLine("Las dos palabras son palindromas");
}
else if (like1 && !like2)
{
Console.WriteLine("Solo la primera palabra es palindroma");
}
else if (!like1 && like2)
{
Console.WriteLine("Solo la segunda palabra es palindroma");
}
else if (!like1 && !like2)
{
Console.WriteLine("Ninguna palabra es palindroma");
}
Console.WriteLine();
}
void Anagrama(string str1, string str2)
{
char[] newStr1 = str1.ToCharArray();
Array.Sort(newStr1);
string str1S = new(newStr1);
char[] newStr2 = str2.ToCharArray();
Array.Sort(newStr2);
string str2S = new(newStr2);
bool sortWord = str1S.Equals(str2S);
if (sortWord)
{
Console.WriteLine("Las palabras son un anagrama");
}
else
{
Console.WriteLine("Las palabras no son un anagrama");
}
Console.WriteLine();
}
void Isograma(string str1, string str2)
{
if (str1.Length == str1.Distinct().Count())
{
Console.WriteLine("La primera palabra es un isograma");
}
else
{
Console.WriteLine("La primera palabra no es un isograma");
}
Console.WriteLine();
if (str2.Length == str2.Distinct().Count())
{
Console.WriteLine("La segunda palabra es un isograma");
}
else
{
Console.WriteLine("La segunda palabra no es un isograma");
}
Console.WriteLine();
}
Palindromo(str1, str2);
Anagrama(str1, str2);
Isograma(str1, str2);
}
AnalyzeWords("murcielago", "reconocer");