Skip to content

Instantly share code, notes, and snippets.

View emamex98's full-sized avatar
😇
Happy and grateful

Emanuel Estrada Larios emamex98

😇
Happy and grateful
View GitHub Profile
@emamex98
emamex98 / links.md
Last active April 28, 2019 17:24
Links a Repositorios
@emamex98
emamex98 / distance.ipynb
Created April 28, 2019 10:52
distance.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@emamex98
emamex98 / libros2.csv
Created April 26, 2019 23:49
mas libros
Title Author Year Genre ISBN
All the Light We Cannot See: A Novel Doerr, Anthony 2017 Drama [1501173219, 9781501173219]
The Shining King, Stephen 2008 Terror [9780385528863, 0385528868]
Hamlet ( Folger Library Shakespeare) Shakespeare, William 1992 Theatre [9780743477123, 074347712X]
Pride and Prejudice Austen, Jane 2002 Drama [9780141439518, 0141439513]
To Kill a Mockingbird Lee, Harper 2002 American Literature [0060935464, 9780060935467]
Go Set a Watchman: A Novel Lee, Harper 2015 American Literature [9780062409850, 0062409859]
Ensayo sobre la ceguera [Blindness] Saramago, Jose 2018 Drama [9786071106, 9786071106643]
The Catcher in the Rye Salinger, J. D. 1991 American Literature [7543321726, 9787543321724]
The Kite Runner Hosseini, Khaled 2013 Drama [9781594631931, 159463193X]
@emamex98
emamex98 / Libros.csv
Created April 24, 2019 00:35
Base de Datos Libros LGBT
Title Author Year ISBN
Simon vs. the Homo Sapiens Agenda Albertalli, Becky 2016 [006234868X, 9780062348685]
Aristotle and Dante Discover the Secrets of the Universe Sáenz, Benjamin Alire 2014 [1442408936, 9781442408937]
Carry On: A Novel Rowell, Rainbow 2015 [1250049555, 9781250049551]
Ash Lo, Malinda 2010 [031604010X, 9780316040105]
I'll Give You the Sun Nelson, Jandy 2015 [0142425761, 9780142425763]
Will Grayson, Will Grayson Green, John 2011 [0142418471, 9780142418475]
Annie on My Mind Garden, Nancy 2007 [0374400113, 9780374400118]
The Perks of Being a Wallflower Chbosky, Stephen 2012 [9781451696196, 1451696191]
Boy Meets Boy Levithan, David 2005 [9780375832994, 0375832998]

Keybase proof

I hereby claim:

  • I am emamex98 on github.
  • I am emamex98 (https://keybase.io/emamex98) on keybase.
  • I have a public key ASDyaKkGG8jpdUcOc40CUEtjwnZjnxy1-cOdTXC3QtyWYwo

To claim this, I am signing this object:

@emamex98
emamex98 / RadixSortB.java
Created September 6, 2017 23:48
Radix Sort que soporta números negativos
public class RadixSortB {
public void radixSort(int[] numbers){
int i, nNeg = 0, length = numbers.length, j = 0, k = 0, max, min, tmp;
// Busca cuantos numeros son negativos en el arreglo
for(i=0; i<length; i++) {
if(numbers[i] < 0)
nNeg++;