Skip to content

Instantly share code, notes, and snippets.

View crudeboy's full-sized avatar
💭
Learning to code...the right way

Apata Jah'swill crudeboy

💭
Learning to code...the right way
  • Decagon
  • Lagos, Nigeria.
View GitHub Profile
// least time differnce in an array
function minDiff(arr){
var sortedArr = arr.sort();
var diff = Number.MAX_VALUE;
for (let i = 0; i < sortedArr.length - 1; i++){
if(Math.abs(new Date('01/01/2001 ' + sortedArr[i + 1]) - new Date('01/01/2001 ' +sortedArr[i]) < diff )){
diff = new Date('01/01/2001 ' + sortedArr[i + 1]) - new Date('01/01/2001 ' +sortedArr[i])
}
}
return diff / (1000 * 60)
@crudeboy
crudeboy / PY0101EN-3-2-Loops.ipynb
Created April 20, 2020 13:32
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@crudeboy
crudeboy / PY0101EN-3-1-Conditions.ipynb
Created April 20, 2020 13:08
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@crudeboy
crudeboy / PY0101EN-2-4-Dictionaries.ipynb
Created April 20, 2020 12:39
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@crudeboy
crudeboy / PY0101EN-2-3-Sets.ipynb
Created April 20, 2020 12:16
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@crudeboy
crudeboy / PY0101EN-2-2-Lists.ipynb
Created April 20, 2020 11:50
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@crudeboy
crudeboy / PY0101EN-2-1-Tuples.ipynb
Created April 20, 2020 11:40
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@crudeboy
crudeboy / 2.1_notebook_quizz_list_tuplesv4.ipynb
Created April 20, 2020 11:20
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@crudeboy
crudeboy / PY0101EN-1-2-Strings.ipynb
Created April 18, 2020 12:35
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@crudeboy
crudeboy / PY0101EN-1-1-Types.ipynb
Created April 18, 2020 11:19
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.