AAmaninimkraman.hashnode.dev·Mar 22, 2023 · 6 min readPrime factor use case in cryptography, number theory, and computer science.How in cryptography? In cryptography, prime factorization is an important tool used in many algorithms. One of the most well-known applications of prime factorization in cryptography is the RSA algorithm, which is used for secure communication over t...00
AAmaninimkraman.hashnode.dev·Mar 3, 2023 · 5 min readLeetCode 202 - Happy Number(cycle detection)Read question here: https://leetcode.com/problems/happy-number/ Solution: class Solution { public boolean isHappy(int n) { int slow = squaredSum(n); int fast = squaredSum(squaredSum(n)); while (slow != fast) { slow = squaredSum(s...00
AAmaninimkraman.hashnode.dev·Feb 27, 2023 · 5 min readSecret to cracking Machine Coding RoundsMachine coding rounds are the easiest to crack given you know the pattern which almost every question has,'Key Points: Machine Coding round questions are designed to be solved in 1.5 hours. So, it is the programmer's duty to not overcomplicate it. ...01I
AAmaninimkraman.hashnode.dev·Feb 24, 2023 · 3 min readWiley Edge Software Developer questionsRobert is given a string that ends with a character or a number. He has to check the length of the given string and append it to the end in such a way that if the original string ends with a number then the new string with the appended value must hav...03SMS
AAmaninimkraman.hashnode.dev·Feb 20, 2023 · 8 min readRedux React AppHere's a detailed overview of my project, starting from how I started: I began by creating a new React application using these**commands**. Here: Project Initialization: To start with, I used the command npx create-react-app my-app --template red...00