RTRajat Tiwariinrajattiwari.hashnode.dev·Jul 14, 2022 · 1 min readTwo Sum - LeetCode EasyProblem Link - https://leetcode.com/problems/two-sum/ class Solution { public: vector<int> twoSum(vector<int>& nums, int target) { int n=nums.size(); //finding the length of the dynamic array i.e., our vector unordered_map<int,int...00
RTRajat Tiwariinrajattiwari.hashnode.dev·Jun 19, 2022 · 2 min readIntroduction to Computer NetworkWhat is Computer Network? A computer network is a collection of various computing devices that are connected using multiple paths for the purpose of sending/recieving data or media. A sender send a data to the reciever while both sender i.e, client a...00
RTRajat Tiwariinrajattiwari.hashnode.dev·Apr 21, 2021 · 2 min readWhy should we hire you ?The most difficult question ever asked in interview. Can you answer this without judging yourself? Its Possible or Impossible? Here a few points noted down to help you with this. ** This is a wonderful opportunity for me to get interviewed at su...00
RTRajat Tiwariinrajattiwari.hashnode.dev·Apr 20, 2021 · 2 min readHow to grow 1% Everyday?Rule of 1.01 1.01 ^ 365 = 37.8 Everyday do a little to grow and atleast try to do. Here are 5 ways to grow 1% daily. 1. Fail more, Fail fast & Fail big: If we Fail more often, fail faster, fail bigger, we learn more & grow more. I used to avoid fai...00
RTRajat Tiwariinrajattiwari.hashnode.dev·Mar 20, 2021 · 1 min readReverse Integer - Leetcode SolutionSo, the problem statement is: Given a signed 32-bit integer x, return x with its digits reversed. If reversing x causes the value to go outside the signed 32-bit integer range [-231, 231 - 1], then return 0. The solution is in python. class Solutio...00