๐Ÿ‘‹ Welcome โ€” You've Landed on My Signature Page

Hey, I'm Anonymous User โ€” software engineer at Unisala.com .

You're viewing my Signature, a space where I share what I'm learning, building, and thinking about โ€” all in one place.

๐Ÿ“ If you came here from my LinkedIn, personal website, or a shared link:
This is not a portfolio in the traditional sense โ€” it's more like a public digital notebook. Every article, thread, or note you see here was written by me, mostly to document useful things and help others who are on the same path.

What You'll Find Here:

  • โœ๏ธ My thoughts on algorithms, systems, and software design
  • ๐Ÿง  Insights from real-world engineering work
  • ๐Ÿ”— Direct links to every article I've published on Unisala
Anonymous User signature image

Signature of Anonymous User

Author avatar
Anonymous UserJun 24, 2025
LeetCode problems based on problem solving techniques

Granular breakdown by subtechnique, focusing on patterns relevant to Amazon๐Ÿง  Greedy SubpatternsGreedy for Local Min/Max122. Best Time to Buy and Sell Stock IIG

2 min readยทGeneral
Article cover
Author avatar
Anonymous UserJun 22, 2025
Top 100 Amazon LeetCode Questions by frequency

Two SumBest Time to Buy and Sell StockLRU CacheMaximum Frequency After Subarray OperationNumber of IslandsReorganize StringLongest Palindromic SubstringMaximize

2 min readยทGeneral
Article cover
Author avatar
Anonymous UserJun 22, 2025
Amazon Hard Problems sorted by frequency

Trapping Rain WaterMerge k Sorted ListsCandyMedian of Two Sorted ArraysMinimum Window SubstringBasic CalculatorLFU CacheConcatenated WordsReverse Nodes in k-Gro

1 min readยทGeneral
Article cover
Author avatar
Anonymous UserJun 22, 2025
Amazon Medium Problems sorted by frequency

LRU CacheMaximum Frequency After Subarray OperationNumber of IslandsReorganize StringLongest Palindromic SubstringMaximize Yโ€‘Sum by Picking a Triplet of Distinc

3 min readยทGeneral
Article cover
Author avatar
Anonymous UserJun 22, 2025
Amazon Easy DS Problems sorted by frequency

Two Sum โ€“ HashMapBest Time to Buy and Sell Stock โ€“ ArraysReverse Linked List โ€“ Linked ListValid Parentheses โ€“ StackPalindrome Number โ€“ Math/StringFlood Fill โ€“ D

2 min readยทGeneral
Article cover
Author avatar
Anonymous UserJun 3, 2025
hi

hi

1 min readยทGeneral
Author avatar
Anonymous UserMay 27, 2025
Reorganize String | Two adjacent characters are not the same.

Given a string s, rearrange the characters of s so that any two adjacent characters are not the same.Return any possible rearrangement of&nb

3 min readยทGeneral
Article cover
Author avatar
Anonymous UserMay 26, 2025
Mean Time To Failure | MTTF

MTTF (Mean Time To Failure) is a reliability measure used to quantify the dependability of computer systems and components.Definition and UsageMTTF represents t

5 min readยทGeneral
Article cover
Author avatar
Anonymous UserMay 22, 2025
๐Ÿš€ Rate Limiting: From Basic to Production Grade Implementations

A deep dive into different ways to implement rate-limiting in JavaScript, comparing tradeoffs and use cases. Let's explore 5 approaches! ๐Ÿงต๐Ÿ‘‡1๏ธโƒฃ Basic Rate-Limi

1 min readยทGeneral
Author avatar
Anonymous UserMar 18, 2025
When to pick DFS vs BFS? Number of Islands

/** * @param {character[][]} grid * @return {number} */var numIslands = function(grid) { let count = 0 for(let i = 0; i < grid.length; i++){

2 min readยทGeneral
Author avatar
Anonymous UserMar 18, 2025
Rotten Orange Grid Traversal Algorithm | 2D Array | Graph Traversal Algo

You are given an m x n grid where each cell can have one of three values:0 representing an empty cell,1 representing a fresh orange, or

4 min readยทGeneral
Article cover
Author avatar
Anonymous UserMar 17, 2025
Kahn's Algorithm | Course Schedule

Thy why???Let's see the real world usage of this solution.  Real-World ApplicationsCourse Scheduling: The problem directly models real-world scenarios, suc

6 min readยทGeneral
Article cover
Author avatar
Anonymous UserMar 13, 2025
"""Given a string s, reverse only all the vowels in the string and return it.The vowels are 'a', 'e'

"""Given a string s, reverse only all the vowels in the string and return it.The vowels are 'a', 'e', 'i', 'o', and 'u', and they can appear in both lower and u

1 min readยทGeneral
Author avatar
Anonymous UserFeb 6, 2025
What is Dimensionality Reduction

What is Dimensionality Reduction?Dimensionality Reduction is a technique used to reduce the number of input variables (features) in a dataset while preserving a

5 min readยทGeneral
Author avatar
Anonymous UserJan 31, 2025
MS in Informatics in ULL

If Computer Science is applied Mathematics, then Informatics is Applied Computer Science, which is why this course is often referred to as Applied Computing.Tod

1 min readยทGeneral
Author avatar
Anonymous UserJan 18, 2025
Design and implement a program, substitution, that encrypts messages using a substitution cipher.

https://cs50.harvard.edu/x/2025/psets/2/substitution//* invalid => return 1 invlaid => digit key => only contain alpha 3. should not contatin re

3 min readยทGeneral
Author avatar
Anonymous UserJan 12, 2025
Wild fire in California | Jan 11th 2025

I am really sorry for Carlifornians, they had to go through this disaster !!!!!

1 min readยทGeneral
Article cover
Author avatar
Anonymous UserJan 11, 2025
Copy Linked List with Random Pointer |

You are given the head of a linked list of length n. Unlike a singly linked list, each node contains an additional pointer random, which may point to

3 min readยทGeneral
Author avatar
Anonymous UserJan 1, 2025
Google High Frequency Leetcode Question

Google Spring' 23 High FrequencyGuess the Word (Hard)Reconstruct Itinerary (Hard)Finding the Number of Visible Mountains (Medium)Largest Color Value in a Direct

4 min readยทGeneral
Article cover
Author avatar
Anonymous UserDec 26, 2024
Polynomial Linear Regression: Comprehensive NotesPolynomial regression is an extension of linear reg

Polynomial Linear Regression: Comprehensive NotesPolynomial regression is an extension of linear regression that is used when the relationship between the indep

3 min readยทGeneral
Author avatar
Anonymous UserDec 24, 2024
Auto Encoders | Unsupervised Learning Model

What are Auto Encoders?Directed neural network. Auto encoders encode itself. It takes some input goes through hidden layers, then outputs. It aims for the outpu

5 min readยทGeneral
Article cover
Author avatar
Anonymous UserDec 9, 2024
Hello

Hello

1 min readยทGeneral
Author avatar
Anonymous UserDec 5, 2024
Key Findings in A Large-Scale Analysis of Borrow Patterns Used Inside Rust's Open-Source Ecosystem

Findings from the study on borrow patterns within Rust's open-source ecosystem.The purpose of the study:This study aims to analyse how the borrow checker is uti

6 min readยทGeneral
Article cover
Author avatar
Anonymous UserNov 15, 2024
Nothing Ear (2)

Welcome to Hukut! A place to find the best electronic products for every taste and occasion. Hukut is the home to thousands of electronic products that you can

2 min readยทGeneral
Author avatar
Anonymous UserNov 7, 2024
Qr Code to Deep learning Space

Scan the following qr code to visit Deep learning Space

1 min readยทGeneral
Article cover