Skip to content

Instantly share code, notes, and snippets.

View EmmaG2's full-sized avatar
🍬
I'm going to upload things in python (or java)

Emma Granados EmmaG2

🍬
I'm going to upload things in python (or java)
View GitHub Profile
#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
import java.io.*;
import java.util.*;
class Main {
public static void main(String[] args) throws IOException {
startDay27();
}
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);
}

Interesting codes

This is a gist of the interesting codes in the watermelon challengue

---
BasedOnStyle: Microsoft
AlignAfterOpenBracket: Align
AlignConsecutiveMacros: "true"
AlignConsecutiveAssignments: "true"
AlignConsecutiveDeclarations: "true"
AlignEscapedNewlines: Left
AlignOperands: "true"
AlignTrailingComments: "true"
AllowAllArgumentsOnNextLine: "true"
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());
}

Challengue of HackerRank

This is my solution for the challengue "if/else", I'm not a bigger fan of this sentence, so... I coded my solution only using ifs and creating a function validator.

'use strict';
const testArray = [1, 'hello', 2, 'world']
const onlyStrings = []
testArray
.filter(n => typeof n === 'string')
.map(n => onlyStrings.push(n))
console.log(onlyStrings)
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");
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))