Skip to content

Instantly share code, notes, and snippets.

View sasili-adetunji's full-sized avatar

Sasiliyu Adetunji sasili-adetunji

  • Toronto, ON
  • 23:20 (UTC -04:00)
View GitHub Profile
//Problem Statement
//Reverse Polish notation is a mathematical notation in which every operator follows all of it's operands.
//
//Implement a Reverse Polish Notation calculator, with the following operations :
//
//: binary operator equivalent to(e.g.)
// : unary operator equivalent to(e.g.)
// : ternary operator equivalent to(e.g.)
//
http://www.oreilly.com/data/free/files/2014-data-science-salary-survey.pdf
http://www.oreilly.com/data/free/files/2015-data-science-salary-survey.pdf
http://www.oreilly.com/data/free/files/Data_Analytics_in_Sports.pdf
http://www.oreilly.com/data/free/files/advancing-procurement-analytics.pdf
http://www.oreilly.com/data/free/files/ai-and-medicine.pdf
http://www.oreilly.com/data/free/files/analyzing-data-in-the-internet-of-things.pdf
http://www.oreilly.com/data/free/files/analyzing-the-analyzers.pdf
http://www.oreilly.com/data/free/files/architecting-data-lakes.pdf
http://www.oreilly.com/data/free/files/being-a-data-skeptic.pdf
http://www.oreilly.com/data/free/files/big-data-analytics-emerging-architecture.pdf
(() => {
let count = 0;
function getAllButtons() {
return document.querySelectorAll('button.is-following') || [];
}
async function unfollowAll() {
const buttons = getAllButtons();