This is a gist of the interesting codes in the watermelon challengue
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
#SingleInstance, Force | |
;#IfWinActive ahk_exe ProPresenter.exe | |
SendMode Input | |
SetWorkingDir, %A_ScriptDir% | |
; AT | |
::gn::Génesis | |
::ex::Éxodo | |
::nm::Números | |
::lv::Levítico | |
::dt::Deuteronomio |
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
import java.io.*; | |
import java.util.*; | |
class Main { | |
public static void main(String[] args) throws IOException { | |
startDay27(); | |
} |
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
package com.challenges.graphs; | |
public class Arista implements Comparable<Arista> { | |
private final Vertice vertice1; | |
private final Vertice vertice2; | |
private int peso; | |
public Arista(Vertice vertice1, Vertice vertice2) { | |
this(vertice1, vertice2, 1); | |
} |
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
--- | |
BasedOnStyle: Microsoft | |
AlignAfterOpenBracket: Align | |
AlignConsecutiveMacros: "true" | |
AlignConsecutiveAssignments: "true" | |
AlignConsecutiveDeclarations: "true" | |
AlignEscapedNewlines: Left | |
AlignOperands: "true" | |
AlignTrailingComments: "true" | |
AllowAllArgumentsOnNextLine: "true" |
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
import java.util.Scanner; | |
public class Main { | |
public static Scanner sc = new Scanner(System.in); | |
public static void main(String[] args) { | |
System.out.println(mensajesOpcionales()); | |
} |
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
'use strict'; | |
const testArray = [1, 'hello', 2, 'world'] | |
const onlyStrings = [] | |
testArray | |
.filter(n => typeof n === 'string') | |
.map(n => onlyStrings.push(n)) | |
console.log(onlyStrings) |
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
import java.util.Scanner; | |
public class Main { | |
public static void main(String[] args) { | |
float[] notes = new float[3]; | |
String name; | |
Scanner scann = new Scanner(System.in); | |
System.out.println("Ingrese el nombre del alumno"); |
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
nombres = input("Ingresa los nombres, separados por coma: ").split(",") | |
nombre_a_buscar = input("Ingresa el nombre a buscar: ") | |
def buscar_nombre(nombre_buscar): | |
if any(nombre == nombre_buscar for nombre in nombres): | |
return f"nombre encontrado {nombre_buscar}" | |
return f"No se encontro el nombre {nombre_buscar}" | |
print(buscar_nombre(nombre_a_buscar)) |