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
function findMaximumSustainableClusterSize(bootingPower,processingPower, powerMax){ | |
let maxClusterSize=0; | |
let firstClusterIndex=0; | |
let lastClusterIndex=0; | |
while(firstClusterIndex<processingPower.length && lastClusterIndex<processingPower.length){ | |
console.log(firstClusterIndex,":",lastClusterIndex) | |
let totalPowerConsumeOfChosenClusterWindow = 0; | |
let windowBootingPowers = bootingPower.filter((power,index)=>index>=firstClusterIndex&&index<=lastClusterIndex); |
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
function countDecreasingRatings(arr){ | |
let isDecrease=false; | |
let theMap={}; | |
let chainLength=1; | |
for(let x= 0; x<arr.length-1;x++){ | |
let prev=arr[x]; | |
let next=arr[x+1]; | |
if(next<prev){ |
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
let maxSubarraySum = (arr,n)=>{ | |
if(n<1 || n>arr.length){return undefined} | |
let maxSum = -Infinity; | |
let windowSum = arr | |
.filter((item,index)=>index<n) | |
.reduce((sum,item)=>sum+item,0); | |
//console.log('Baslangic ara toplami:', windowSum); | |
for(let x= 0; x<arr.length-n;x++){ | |
windowSum =windowSum-arr[x]+arr[x+n] |
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
// practical way | |
let arr = [1,7,4,2,8,9,3,6]; | |
let arrLength = arr.length; | |
let sum2=0; | |
arr.forEach(item=>{sum2+=item}); | |
console.log(((arrLength+1)*(arrLength+2)/2)-sum2) |
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
let freq = { | |
a: { '0': 336, '1': 1434, '2': 163, '3': 1006, '4': 592 }, | |
b: { '0': 371, '1': 34, '2': 164, '3': 67 }, | |
c: { '0': 121, '1': 17, '2': 100, '3': 142 }, | |
'ı': { '0': 30, '1': 229, '2': 23, '3': 374, '4': 216 }, | |
d: { '0': 309, '1': 32, '2': 200, '3': 99, '4': 1 }, | |
i: { '0': 209, '1': 545, '2': 80, '3': 774, '4': 351 }, | |
l: { '0': 113, '1': 126, '2': 571, '3': 294, '4': 312 }, | |
n: { '0': 135, '1': 89, '2': 389, '3': 108, '4': 516 }, | |
'ş': { '0': 100, '1': 45, '2': 163, '3': 19, '4': 216 }, |
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
chrome.tabs.query({active: true, currentWindow: true}, function (tabs) { | |
chrome.tabs.update(tabs[0].id, {url:event.target.dataset.link}, function (response) { | |
//what you want to do with response | |
}); | |
}); |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" | |
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>start_pause_stop_timer</title> | |
<style> | |
button{ |
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
const account = { | |
balance: 0 | |
}; | |
const accountProcesses= {}; | |
// Account processes - as many as we want | |
accountProcesses.deposit = { | |
process:(amount)=>{ | |
account.balance += amount; | |
} |
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
-------------------------------------------------------------------- | |
COURSE: Mastering the System Design Interview by | |
INSTRUCTOR: Sundog Education by Frank Kane, Founder, Sundog Education. Machine Learning Pro | |
-------------------------------------------------------------------- | |
COURSE: Pragmatic System Design by | |
INSTRUCTOR: Alexey Soshin, Solutions Architect @Depop | |
-------------------------------------------------------------------- | |
COURSE: Clean Code by | |
INSTRUCTOR: Akin Kaldiroglu, Consultant and Trainer for SWE & Java | |
-------------------------------------------------------------------- |