Problem Solving (Basic) Certification | Hackerrank Certifications

preview_player
Показать описание
Thanks if u r watching us ...
#Dev19 #C #Python #Dev19 #HackerankSolutions #C #C++ #Java #Python
Please Subscribe Us ....
Рекомендации по теме
Комментарии
Автор

You don't need to use if-else block to check if it is positive or negative

raki
Автор

bro these are the very basic questions, and i just took this exam. the questions were literally of the codechef level. they really increased the level in 3 years

Stickman-rznu
Автор

Great video. Thanks for the content. Is it possible to make a video on the Javascript (Basic) certification too?

frankiebukenya
Автор

Please upload a video Problem Solving(intermediate)

Pranshup
Автор

How frequently does a 15 year old boy earn this certificate?

adwaitT
Автор

Thank you,
Looking forward to JavaScript
Need of Java JavaScript

mranonymous
Автор

Can you make a video on C# certification?

ritamgiri
Автор

any video on problem solving intermediate

swati
Автор

I tried it but unfortunately I didn't attempt ..and then now it's showing me " unfortunately yu did not clear the test " so what can I do sir ?

tanii
Автор

Thank u sir

Please make a video on javascript certificate...

realajaydubey
Автор

When can we give a 2 nd attempt .
Please can anyone help me with this time issue

MoyeMoyeeBgmi
Автор

After exactly how many days can we retake the test(for me already 6 days have passed)???

Pranshup
Автор

In the reattempt do we get the same questions??

Pranshup
Автор

These questions are actually confusing, and I need to do this in Javascript.

iranazadi
Автор

When we get certified after completing this test

gehsgsggs
Автор

Hi. Is it OK to share solutions of hackerrank certifications? Is it legal with their policy?

mehdi
Автор

StringAnagram... DONE AND DUSTED

from collections import Counter
def stringAnagram(dictionary, query):
# Write your code here
dict_ = [''.join(sorted(word)) for word in dictionary]
q_ = [''.join(sorted(word)) for word in query]

result = []
count = Counter(dict_)
for word in q_:
if word in count.keys():
result.append(count[word])
else:
result.append(0)
return result


just copy paste this function, Hope it helps you🎩

rudraprasaddash
Автор

Today I completed the certification.
I had two question namely.

1)Finding longest substring having maximum vowels in a string. (Longest Vowel)
2)Longest subarray containing no more than 2 distinct values such that the distinct values differ by no more than 1.

Honestly, these questions were medium level rather than basic. If you are doing problem solving for 4, 5 months then you should have good enough knowledge to crack these question. Hackerrank has made sure that these certificate carry some real value. By no chance one can get this certificate if you got no skills.

pranavm
Автор

No I am not able to get it I need the perfect answer .I am not able to solve it that's why

shanthiyasekar
Автор

One request sir.please post the code in c++ please I am searching but I didn't get please post it sir

shanthiyasekar