Jump to content

.


Dhimputha

Recommended Posts

Just now, dasari4kntr said:

this is 84 videos play list...by one lecturer from india...

i like his videos...watch it ....daily one...

 

👍🏼

Link to comment
Share on other sites

Programming language doesnt really matter for cracking the interview. ds, algos are the key.

 

learning java would be easy compared to py. But once u expertize in py, thats totally diff ball game.

 

my 2 cents: if u want to get into faang, focus more on ds & algs. Leetcode should be a good start

  • Like 1
Link to comment
Share on other sites

1 hour ago, Vaampire said:

Programming language doesnt really matter for cracking the interview. ds, algos are the key.

 

learning java would be easy compared to py. But once u expertize in py, thats totally diff ball game.

 

my 2 cents: if u want to get into faang, focus more on ds & algs. Leetcode should be a good start

Ok bro thank you 👍🏼

Link to comment
Share on other sites

1 hour ago, Vaampire said:

Programming language doesnt really matter for cracking the interview. ds, algos are the key.

 

learning java would be easy compared to py. But once u expertize in py, thats totally diff ball game.

 

my 2 cents: if u want to get into faang, focus more on ds & algs. Leetcode should be a good start

@Vaampire average ga enni leet code problems chesav.

Link to comment
Share on other sites

8 minutes ago, Vaampire said:

700+ plus anukunta. Did not do any since lasr few weeks.

200-300 should be decent.

 

@Vaampire one easy problem ki 1 hour minimun padutundi.. monna ne start chesa ..is it normal with everyone   :mellow:

Link to comment
Share on other sites

2 hours ago, dasari4kntr said:

i have good experience with c#, java, javascript/typescript..etc

now learning python...

if i were you...i will choose python...

Python

Link to comment
Share on other sites

9 minutes ago, Nimmakai said:

@Vaampire one easy problem ki 1 hour minimun padutundi.. monna ne start chesa ..is it normal with everyone   :mellow:

Very normal. Starting alaney untadi. 2 hours is also very normal. As u solve more probs, speed increases.

 

konni hard probs naaku 6hours pattina rojulu kooda unnayi

Link to comment
Share on other sites

2 minutes ago, Vaampire said:

Very normal. Starting alaney untadi. 2 hours is also very normal. As u solve more probs, speed increases.

 

konni hard probs naaku 6hours pattina rojulu kooda unnayi

thanks @vampire bro :sHa_friends:

Link to comment
Share on other sites

1 hour ago, Nimmakai said:

one easy problem ki 1 hour minimun padutundi.

I started learning Python recently (couple of weeks). 

Classes inka sarigga ardam kaledu. But functions to 3 or 4 problems solve chesa. 

Happy with how I am writing the code so far. Kinda square root calculation ki feedback ivvandi.

import math
t=(3,5,8,6,9)
t2=[] 
t3=[] 
#Using math library
for i in range(len(t)):
    t2.append(t)
    t2.append(math.sqrt(t))
print(tuple(t2))
#Using mathematical iteration
for x in t:
    for i in range(x):
        if (i*i)<(i+1)*(i+1):
            b=float(i)
            while b<i+1:
                b+=.01
                if b*b<x<(b+.01)*(b+.01):
                    t3.append(x)
                    t3.append(round(b,2))
print(t3)
#### Longest Palindrome substring

print('Enter any word to find all palindrome substrings (3 letters or more) in it')
stri = input()
k=len(stri)
l=0
m=1
list1=[]
for l in stri:
    i=0 #string start char
    j=2 #increment1
    while i+j+m<k+1:
        str1 = stri[i:(i+j+m)]
        str2 = str1[::-1]
        if str1 == str2:
            print(str1)
            list1.append(str1)
            print(list1)
        i=i+1
    m+=1 #increment2
print('longest palindrome is',list1[-1])
for p in list1:
    list1.count(list1(p))

  • Like 1
Link to comment
Share on other sites

26 minutes ago, Democraticcompulsion said:

for i in range(len(t)):
    t2.append(t)
    t2.append(math.sqrt(t))

ee part lo t [ i ] enduko post lo ravatledu. Anyone know the reason?

Link to comment
Share on other sites

7 minutes ago, Dhimputha said:

Monna antunnav kadha so it takes time to pick up scada,,, give yourself 6 months+ time and solve problems everyday. 

nijanga bro, 1 day lo max 5 problem itunnai anthe.. ipatiki oka 17 emo solve chesa.. chala time taking ga undi

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...