KPIT โ
(Python 3)
๐
๐๐๐ฅ๐ข๐ง๐ ๐ฐ๐ก๐๐ง ๐ฒ๐จ๐ฎ ๐๐จ๐ฆ๐ฉ๐ฅ๐๐ญ๐๐ ๐๐ฅ๐ฅ ๐ญ๐ก๐ ๐ญ๐๐ฌ๐ค๐ฌ ๐๐ง๐ ๐ฆ๐๐ซ๐ค ๐ญ๐ก๐๐ฆ โ
, ๐ข๐ญ'๐ฌ ๐ฎ๐ง๐ฆ๐๐ญ๐๐ก๐๐ ๐โค๏ธ
P.S. Start creating a list of task which you want to do on any particular day, trust me it will increase your productivity and help you being consistent โ
P.S. Start creating a list of task which you want to do on any particular day, trust me it will increase your productivity and help you being consistent โ
๐3
// First Unique Character
// TC O(N)
// SP O(N)
int Xexamster(string str)
{
int count = 0;
unordered_map<char, int> mp;
for (int i = 0; i < str.length(); i++)
mp[str[i]]++;
for (auto i : mp)
{
if (i.second == 1)
count++;
}
return count;
}
// TC O(N)
// SP O(N)
int Xexamster(string str)
{
int count = 0;
unordered_map<char, int> mp;
for (int i = 0; i < str.length(); i++)
mp[str[i]]++;
for (auto i : mp)
{
if (i.second == 1)
count++;
}
return count;
}
โ
โ
โ
#HackerRank EV Positive Prefixes - HackerRank Python Solutions
https://csalgo.tech/threads/ev-positive-prefixes-hackerrank-python-solutions.261/
https://csalgo.tech/threads/ev-positive-prefixes-hackerrank-python-solutions.261/
CS-Algo
HackerRank - EV Positive Prefixes - HackerRank Python Solutions
EV Positive Prefixes - HackerRank Python Solutions
Python 3 - Code
(Hidden text: Visit the forum thread!)
EV Positive Prefixes - HackerRank Python Solutions
Python 3 - Code
(Hidden text: Visit the forum thread!)
EV Positive Prefixes - HackerRank Python Solutions
๐1
โ
โ
โ
#HackerRank EV_First Unique Character - HackerRank C++ Solution
https://csalgo.tech/threads/ev_first-unique-character-hackerrank-c-solution.271/
https://csalgo.tech/threads/ev_first-unique-character-hackerrank-c-solution.271/
CS-Algo
HackerRank - EV_First Unique Character - HackerRank C++ Solution
First Unique Character - HackerRank C++ Solution
(Hidden text: Visit the forum thread!)
First Unique Character - HackerRank C++ Solution
(Hidden text: Visit the forum thread!)
First Unique Character - HackerRank C++ Solution
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Flipkart GRID 4.0 (The most awaited opportunity)
Batch eligible: 2023, 2024, 2025 and 2026 passouts
Great opportunity to start career with Flipkart โค๏ธโ
https://bit.ly/3GMY5ZM
Share Among juniors, friends and seniors and also hit a โค๏ธ so that it will reach to max๐โ
Batch eligible: 2023, 2024, 2025 and 2026 passouts
Great opportunity to start career with Flipkart โค๏ธโ
https://bit.ly/3GMY5ZM
Share Among juniors, friends and seniors and also hit a โค๏ธ so that it will reach to max๐โ
Unstop
Flipkart GRiD 4.0 - Software Development Challenge by Flipkart! | 2022 // Unstop (formerly Dare2Compete)
Flipkart GRiD 4.0 - Software Development Challenge a hackathons by Flipkart open to Engineering Students, Postgraduate, Undergraduate Apply online before 2022-07-01 10:00:34! | 2022
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
GeeksForGeeks is hiring Technical Content Engineer Intern.
If you are looking for same in any of the below roles, send your resume at divyanshu.kumar@geeksforgeeks.org
All batch Eligible.
If you are looking for same in any of the below roles, send your resume at divyanshu.kumar@geeksforgeeks.org
All batch Eligible.
๐ Adobe Off Campus Drive 2022 : Mass Hiring for Freshers With 26 LPA
* Designation : Member of Technical Staff
* Eligibility : B.E/B.Tech/M.E/M.Tech
* Batch : 2021 , 2022
* Job Location : Bangalore
* Experience : Freshers
* Salary : Rs 26 LPA
Apply Here
โ Share in ur College WhatsApp Groups
๐Direct & 100% Ads Free Links
Telegram - t.me/fresherearth
* Designation : Member of Technical Staff
* Eligibility : B.E/B.Tech/M.E/M.Tech
* Batch : 2021 , 2022
* Job Location : Bangalore
* Experience : Freshers
* Salary : Rs 26 LPA
Apply Here
โ Share in ur College WhatsApp Groups
๐Direct & 100% Ads Free Links
Telegram - t.me/fresherearth
๐2
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ pinned ยซ๐ Adobe Off Campus Drive 2022 : Mass Hiring for Freshers With 26 LPA * Designation : Member of Technical Staff * Eligibility : B.E/B.Tech/M.E/M.Tech * Batch : 2021 , 2022 * Job Location : Bangalore * Experience : Freshers * Salary : Rs 26 LPA Apply Hereโฆยป
#use 1st line for permutations
from itertools import permutations
li=[]
ans =[]
re = []
li = list(permutations(input))
for i in li:
s =0
for j in range(len(i)):
op = 2**j
s += i[j]//op
ans.append(s)
for i in input3:
a =0
for j in ans:
if i<=j:
a+= 1
re.append(a)
return(re)
Farmer jhons dilemma โ
(Python 3)
from itertools import permutations
li=[]
ans =[]
re = []
li = list(permutations(input))
for i in li:
s =0
for j in range(len(i)):
op = 2**j
s += i[j]//op
ans.append(s)
for i in input3:
a =0
for j in ans:
if i<=j:
a+= 1
re.append(a)
return(re)
Farmer jhons dilemma โ
(Python 3)
๐1๐ฅ1
โ
โ
โ
#HackerRank Expand the Mathematical Expression - HackerRank Python Solution - IBM Code
https://csalgo.tech/threads/expand-the-mathematical-expression-hackerrank-python-solution.276/
https://csalgo.tech/threads/expand-the-mathematical-expression-hackerrank-python-solution.276/
CS-Algo
HackerRank - Expand the Mathematical Expression - HackerRank...
Expand the Mathematical Expression - HackerRank Python Solution
(Hidden text: Visit the forum thread!)
Expand the Mathematical Expression - HackerRank Python Solution
(Hidden text: Visit the forum thread!)
Expand the Mathematical Expression - HackerRank Python Solution
๐1
Amazon - LeetCode.pdf
648.1 KB
โ
โ
โ
Amazon LeetCode Question - 06 - June 2022
How many of you are appearing for TSLP this month ?
Anonymous Poll
40%
Yes , I'm appearing
60%
Noooooo
โค1