-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4068 from KontrolDev/main
Reto #28 - Swift
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
Retos/Reto #28 - EXPRESIÓN MATEMÁTICA [Media]/swift/kontroldev.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
Crea una función que reciba una expresión matemática (String) | ||
y compruebe si es correcta. Retornará true o false. | ||
- Para que una expresión matemática sea correcta debe poseer | ||
un número, una operación y otro número separados por espacios. | ||
Tantos números y operaciones como queramos. | ||
- Números positivos, negativos, enteros o decimales. | ||
- Operaciones soportadas: + - * / % | ||
|
||
Ejemplos: | ||
"5 + 6 / 7 - 4" -> true | ||
"5 a 6" -> false | ||
*/ | ||
|
||
import Foundation | ||
|
||
func verificarExpresionMatematica(_ expresion: String) -> Bool { | ||
let operaciones: Set<Character> = ["+", "-", "*", "/", "%"] | ||
let componentes = expresion.components(separatedBy: .whitespaces) | ||
|
||
if componentes.count % 2 == 0 { | ||
return false // La cantidad de componentes debe ser impar (número-op- número-op-...- número) | ||
} | ||
|
||
for (indice, componente) in componentes.enumerated() { | ||
if indice % 2 == 0 { | ||
if let _ = Double(componente) { | ||
continue // Componente es un número válido, continuar al siguiente | ||
} else { | ||
return false // Componente no es un número válido | ||
} | ||
} else { | ||
if operaciones.contains(componente.first ?? Character("")) { | ||
continue // Componente es una operación válida, continuar al siguiente | ||
} else { | ||
return false // Componente no es una operación válida | ||
} | ||
} | ||
} | ||
|
||
return true // La expresión es correcta | ||
} | ||
|
||
let expresion1 = "5 + 6 / 7 - 4" | ||
let expresion2 = "5 a 6" | ||
|
||
print(verificarExpresionMatematica(expresion1)) // true | ||
print(verificarExpresionMatematica(expresion2)) // false |