Deedat205's Posts
Nairaland Forum › Deedat205's Profile › Deedat205's Posts
Ejiod:How was your interview brother? Wishing you success |
classicdude1:I can't thank you more for what you shared. Before the lecture, I knew nothing about data science, I know better know. Although the lecture is just the prerequisite, I learnt alot. Please , I'll appreciate if anyone has any other valuable material to share. Especially if it's from "lazyprogrammer" |
great share. Thumbs up |
How will you cope with copyright issues? your site will be brought down if it gains recognition. It is illegal to host movies if you don't have the license to do so. it's a serious offence if you reside in an European country. You don't have to spend much if you want to own a movie streaming site. There is a script built on laravel framework that searches for movies and descriptions automatically. You can use the script without directly hosting movies on your site, it can be customized to fetch movies from hosting companies using their API and imdb description. I own one last year but traffic was a major issue. Making money through movie niche requires a very huge amount of traffic. |
This is beautiful |
Jazakumullahu kaeera |
pcguru1:I'm inspired, there was a time I was trying to focus on algorithms because someone introduced hackerrank to me and the challenges were to tough for me. I came across CLRS, I tried to understand that book but I just couldn't. I didn't know if I was doing mathematics or I was programming. It has a lot of proving and rather than the book solving my problem, it was compounding it. I had to leave the book. I'll go back to the book hopefully it gets less scary this time. |
Automate the Boring Stuff with Python is the best book I have read on Python. I don't know if it has been updated but trust me, you'll like it |
Leopantro:Thank you brother, but I couldn't download it. Is there any other way you can help? |
I'm trying to improve my programming skills and currently I'm trying to understand how recursion works. The examples I have been seeing are giving me headache. I went online and I saw resources but I couldn't get them for free. * Introduction to Recursive Programming , M. Rubio- Sánchez (Taylor & Francis, 2017) [In Python] * Practicing Recursion in Java , I. Pevac (CreateSpace Independent Publishing Platform, 2016) * Thinking Recursively with Java , E. S. Roberts (Wiley, 2006) [Also an earlier edition in Pascal] * Recursion via Pascal , J. S. Rohl (Cambridge University Press, 1984) I'll be grateful if any one can help me with any of those materials or any similar material. Thanks in advance |
orimion and Haskell are 5 and 6 def dirReduc(l): cor = ['NORTH','SOUTH','WEST','EAST'] i = 0 while i < len(l)-1: if l[i] == cor[0] and l[i+1] == cor[1] or l[i] == cor[1] and l[i+1] == cor[0]: del(l[i]) del(l[i]) i = 0 elif l[i] == cor[2] and l[i+1] == cor[3] or l[i] == cor[3] and l[i+1] == cor[2]: del(l[i]) del(l[i]) i = 0 else: i += 1 return l |
To all social media marketing gurus. Please I have a website in movie niche and I know YouTube will be the most appropriate platform to promote it. Can anyone please help me with a method either free or paid to drive traffic to it. Thanks in advance |
Nmeri17:Thanks. I'm grateful for this |
What a wonderful discussion. For a while I have been trying to understand dynamic programming, I'm really struggling with it. I have gone online and seen tutorials but I still don't understand the concept behind most answers and some it take me hours to understand. Please I want to know if someone here knows a superb material for absolute beginners to understand dynamic programming |
Jamb cut off at 120!!! Is it jamb that's getting too difficult or youths are getting dumb |
Is it jamb that's getting too difficult or youths are getting dumb |
Keeppushing:Hi brother, Can I have your contact? I'm also in IIHT currently taking ICWD (WEB) We can share ideas |
orimion:I'm just curious on why u chose Haskell. It has unfamiliar syntax. I use python because of its simplicity. I'm yet to see any language as easy as python |
orimion:Bravo |
There is a stubborn challenge I want you guys to try out on Hackerrank https://www.hackerrank.com/challenges/separate-the-numbers/problem The challenge was rated easy, but I think medium would have been appropriate to describe its complexity The challenge is to determine if a string has numbers that are consecutive with a difference of 1. Example 1234, 91011 and 99100 should all return YES while something like 101113, 2325 should both return NO |
We have strong programmers on Nairaland my python 3 solution to RLE Encoding a = 'wwwwaaadexxxxxx' a += '!' i,s = 0,'' while i < len(a)-1: c = 1 while a[i] == a[i+1] and i < len(a)-1: c,i = c+1, i+1 s += a[i]+str(c) i += 1 print(s) Solution to RLE decoding import re a = 'A12T3Y4' x = re.compile(r'[A-Za-z]') y = re.compile(r'\d+') p = x.findall(a) q = y.findall(a) z = '' for i in range(len(p)): z += p[i]*int(q[i]) print(z) |
Python 3 def solve(z): p,count = z.upper(),0 for b in set(p): if p.count(b) > 1: count+= 1 return count s = 'aabBcde' print(solve(s)) https://ideone.com/DhTkdh https://ideone.com/DhTkdh |
Nice challenge. But who can come up with the RLE string decoding solution.
Eg W4E2H3 should be WWWWEEHHH and A12T3Y4 should be AAAAAAAAAAAATTTYYYY |
Covert:07033988642 The email address I used while registering is no longer active I will love to hear from you |
Really sorry about that. Can you please share some of the questions you were asked? so others can benefit. I hope you get a good job soonest |
I have basic knowledge of c#. However I would like to know how to create social media bots. I wish to implement features like follow and unfollow, auto comment, posting on profile and the likes. Can anyone please lead me to a website or material where I can achieve all that Thanks in advance |
olaolaking:Sure |
You can watch and download the lasted movies for free at http://www.bestmoviestreaminghd.com |
You can watch and download movies without registration at www.bestmoviestreaminghd.com |
There is a programming challenge going on on Hackerrank. It's a 7 day contest and it's currently on day 2. It's a world wide challenge and winners are rewarded. Feel free to post your challenges when tackling the problem https://www.hackerrank.com/contests/w33/challenges?utm-source=w33-startday2&utm-medium=email&utm-campaign=w33 Join the contest and let us see how far you can go |