Skip to content

Instantly share code, notes, and snippets.

View caglarorhan's full-sized avatar
🤿
diving to the codes :)

Çağlar ORHAN caglarorhan

🤿
diving to the codes :)
View GitHub Profile
@caglarorhan
caglarorhan / findMaximumSustainableClusterSize.js
Created June 14, 2022 22:46
findMaximumSustainableClusterSize is a sliding window example
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);
@caglarorhan
caglarorhan / countDecreasingRatings.js
Created June 13, 2022 20:25
countDecreasingRatings Amazon SDE2 coding question
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){
@caglarorhan
caglarorhan / sliding_window_pattern.js
Created April 4, 2022 16:39
Using sliding window pattern to find something in an array which has to be a sub array.
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]
@caglarorhan
caglarorhan / find_the_lost_item_in_an_ordered_array.js
Created March 19, 2022 02:41
Find the lost item in an ordered array. All items are integer and all numbers between 1 to n. Only one is lost, find the lost one.
// 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)
@caglarorhan
caglarorhan / fiveLetterTurkishWordsLetterPositionFrequencyObject.js
Last active February 25, 2022 06:24
five letter Turkish words letter-position frequency
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 },
@caglarorhan
caglarorhan / browser_tabs_update.js
Created February 23, 2022 03:47
Update a tab's URL from popup of chrome extension
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
});
});
@caglarorhan
caglarorhan / start_stop_timer.html
Created January 5, 2022 23:52
Cok canim cekti, keyfine. Aklimda cok deli is akisi modelleri var. Apple Stayla min UI max islevsellik.
<!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{
const account = {
balance: 0
};
const accountProcesses= {};
// Account processes - as many as we want
accountProcesses.deposit = {
process:(amount)=>{
account.balance += amount;
}
@caglarorhan
caglarorhan / MyLastlyPurchasedUdemyCourses.txt
Created December 1, 2021 18:25
My Lastly Purchased Udemy Courses
--------------------------------------------------------------------
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
--------------------------------------------------------------------
@caglarorhan
caglarorhan / SideBar.js
Created September 6, 2021 18:17
sidebar
window.addEventListener('load', () => {
const ccode = 2354;
const agent = navigator.userAgent;
const referrer = document.referrer;
const url = window.location.href;
const wprotocol = ('https:' === document.location.protocol) ? 'https' : 'http';
const imgTracker = document.createElement('img');
imgTracker.src = wprotocol + '://traffic.wdc.center/traffic.php?mkodu=' + ccode + '&url=' + document.location.href + '&t=' + document.title + '&ref=' + referrer + '&agent=' + agent;
imgTracker.style.height = 0;
imgTracker.style.width = 0;