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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Multiplicación de matrices.</title> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet" type="text/css" /> | |
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/> | |
<style type="text/css"> | |
body{background-color: #F9FAFB;} |
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
// DATASET EXAMPLE. | |
let coins_sorted = [ | |
{value: 500, amount: 4}, | |
{value: 200, amount: 0}, | |
{value: 100, amount: 1}, | |
{value: 50, amount: 0}, | |
{value: 20, amount: 5}, | |
{value: 10, amount: 3}, | |
{value: 5, amount: 2}, | |
{value: 2, amount: 5}, |
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 in https://sellercentral.amazon.com.mx/inventory/ref=xx_invmgr_dnav_xx?tbla_myitable=sort:%7B%22sortOrder%22%3A%22DESCENDING%22%2C%22sortedColumnId%22%3A%22date%22%7D;search:;pagination:1; | |
*/ | |
trs = document.getElementsByClassName("mt-row") | |
for (var i = 0; i < trs.length; i++) { | |
if (trs[i].innerHTML.indexOf("aui-check") == -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
<?php | |
/* | |
Build by eulr @ eulr.mx | |
[email protected] | |
V 0.6b | |
*/ | |
require_once 'connection.php'; | |
require_once 'logger.php'; | |
class OOM{ |
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
/* | |
* GET FREE INDIE MUSIC WITH EMERGENTE FM | |
* TRY emergente.play(572) | |
*/ | |
var emergente = { | |
template: "http://admin.emergente.fm/uploads/song/%/mp3_high.mp3", | |
set: function(i){ | |
return emergente.template.replace("%",i); |
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
/* | |
* GO GIVE <3 TO A COUPLE HELLOTAB POSTS | |
* where | |
* i = Initial value, 100 most of the times | |
* g = Goal value, (999?) | |
* post = HelloTab post token | |
*/ | |
function like_post(i, g, post){ | |
if (i < g) { |
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
@Spec Heap | |
Un árbol heap es un árbol binario completo que tiene | |
un orden impuesto en sus nodos tal que el valor de la raiz | |
del árbol es mayor o igual que los valores en ambos sub-árboles, | |
y ambos sub-árboles son a su vez árboles heap. | |
***Glosario:*** |