Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,194,591 members, 7,955,174 topics. Date: Saturday, 21 September 2024 at 06:47 PM

Progeek37's Posts

Nairaland Forum / Progeek37's Profile / Progeek37's Posts

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (of 13 pages)

Programming / Re: First Thing First, Learn To Program! by progeek37(m): 1:38pm On Nov 11, 2020
Why do you have to pay N200, 000 thousand to download Udemy courses? Watching prerecorded made by far away human being! Why don't you just pay a token, and let me drive you to your career path in programming by teaching the fundamentals of programming and algorithms and data structures? Subscribe to my Zoom tutorial and experience a lift in your view of what programming is all about. Send me a WhatsApp message, check on my profile for details.
Programming / Re: First Thing First, Learn To Program! by progeek37(m): 1:32pm On Nov 11, 2020
Exercise


Below is described how to find the date of Easter in any year. Despite its intimidating appearance, this is not a hard problem. Note that [x] is the floor function, which for positive numbers just drops the decimal part of the number. For instance [3.14] = 3. The floor function is part of the math module.

C =century (1900’s → C =19)
Y = year(all four digits)
m = (15+C−C4−8C+1325)mod30
n = (4+C−C4)mod7
a = Ymod4
b = Ymod7
c = Ymod19
d = (19c+m)mod30
e = (2a+4b+6d+n)mod7

Easter is either March(22+d+e) or April(d+e−9). There is an exception if d=29 and e=6. In this case, Easter falls one week earlier on April 19. There is another exception if d=28, e=6, and m=2,5,10,13,16,21,24,or39.
In this case, Easter falls one week earlier on April 18. Write a program that asks the user to enter a year and prints out the date of Easter in that year.
Programming / Re: Join This Thread If You Want To Master Algorithms And Data Structures by progeek37(m): 1:31pm On Nov 11, 2020
syluck:


Sorry, what's your WhatsApp group?
Send me a WhatsApp message
Programming / Re: Join This Thread If You Want To Master Algorithms And Data Structures by progeek37(m): 11:58pm On Nov 05, 2020
syluck:
Following....

Secondly, I'm new to programming and I want to learn a lot.

Lastly, Nairaland bots keeps banning me if I upload any pictures here. I don't know why
Yes, that is a problem. I have similar challenge. If you have solid knowledge in data structures and algorithms you can join my coding WhatsApp group or if you are new you can subscribe to my Zoom tutorial.
Programming / Re: You Would Better Start Programming With Java Or C# by progeek37(m): 11:55pm On Nov 05, 2020
logicDcoder:


But I started with C. Initially it was tough but with time I pickt it up. The main reason why I learnt C is just to understand the fundamentals and the working process of DATA STRUCTURES and it opened my eye unlike python that has predefined methods for handling some operations on some data structures. C also unlocked my ability in getting solutions to solve problems in steps�. I learnt alot from C such as how memory is allocated for variable and other data structures, how to manipulate bits (packing multiple characters in an integer), how to handle files and I get to know more about program processes (how the child interacts with the parent processes). In summary C has a lot of packages but we all want to build things without understanding how it interacts with our machine. My advice to noobs out there, start with C++ not C, it has all the packages you need (Systems programming + OOP),it you really need to know it for competitive programming.
Yes C is a great language, many beginners get lost and discouraged at Pointers. So I will advise them to start with Java or C#.
Programming / Re: First Thing First, Learn To Program! by progeek37(m): 4:59pm On Oct 30, 2020
The class is still open to the general public. You can subscribe today by sending me a WhatsApp message. Check my Nairaland signature
Programming / Re: You Would Better Start Programming With Java Or C# by progeek37(m): 4:51pm On Oct 30, 2020
The class is still open to the general public. You can subscribe today by sending me a WhatsApp message. Check my Nairaland signature
Programming / Re: Join This Thread If You Want To Master Algorithms And Data Structures by progeek37(m): 4:50pm On Oct 30, 2020
The class is still open to the general public. You can subscribe today by sending me a WhatsApp message. Check my Nairaland signature
Programming / Re: Learn The Fundamentals Of Algorithms And Data Structures. by progeek37(m): 4:50pm On Oct 30, 2020
The class is still open to the general public. You can subscribe today by sending me a WhatsApp message. Check my Nairaland signature
Programming / Re: Avoid The Hard Ways Of Learning Programming by progeek37(m): 9:19pm On Oct 26, 2020
First things first learn to program. Subscribe to my tutorial class today by sending me a WhatsApp message.
Programming / Re: You Would Better Start Programming With Java Or C# by progeek37(m): 9:17pm On Oct 26, 2020
First thing first learn to program. Join my Java class today. Send me WhatsApp message.
Programming / Re: First Thing First, Learn To Program! by progeek37(m): 9:16pm On Oct 26, 2020
Exercise

Implement a MyQueue class which implements a queue using two stacks.

Guideline:

First implement a stack, there are two ways to do this:

1) static implementation using array.

2) dynamic implementation with linked list.

Implement _push(element)_ and _pop()_ methods, when the stack is working well, create a class *MyQueueClass* and incorporate the idea of stack in it, but the class will have the methods _enqueue(element)_ and _dequeue()_.
How will you do it?
Consider this:

Stack is _Last-In-First-Out(LIFO)_, that's the the push(element) method will add element to the end of the stack and pop() method will remove and return the very last element added.
But Queue is _First-In-First-Out(FIFO)_ the _enqueue(element)_ will also add element to the end like stack's push method but the _dequeue()_ will remove and return the first element added, follow by the second etc.
To implement this Queue principle using two stacks, one way to do this is:

Instantiate two objects of your stack class, add all the elements in the first stack object when user calls the enqueue(element) of the MyQueueClass. But when user calls the dequeue() method you will apply logic here.
Continually pop out the elements in the first stack object into second stack object until the first element is popped out, this first element added, will now be the last element added in the second stack. Pop it out to the user.
That's is queue!
Programming / Re: First Thing First, Learn To Program! by progeek37(m): 6:16pm On Oct 19, 2020
Pursue your dreams and collaborating with other programmers. Join my free coding group today.
Programming / Re: Learn The Fundamentals Of Algorithms And Data Structures. by progeek37(m): 2:24pm On Oct 19, 2020
Join my class and handle algorithms without fear!
Programming / Re: Learn The Fundamentals Of Algorithms And Data Structures. by progeek37(m): 7:48am On Oct 17, 2020
If you have already learnt the basics of programming, you can subscribe to my algorithm and data structure class. I will work you through basic algorithm and data structure for a whole 30 days. You will pick up from there and become a master.
Programming / Re: You Would Better Start Programming With Java Or C# by progeek37(m): 7:45am On Oct 17, 2020
You can subscribe to my tutorial by sending me a WhatsApp message.
Programming / Re: First Thing First, Learn To Program! by progeek37(m): 7:43am On Oct 17, 2020
Mosopzy23:





How do I subscribe?
Send me a message on WhatsApp, check my contact on my signature
Programming / Re: Learn The Fundamentals Of Algorithms And Data Structures. by progeek37(m): 12:41pm On Oct 08, 2020
Join my coding group and add your experience to the group. If you are new to coding you can subscibe to my tutorial class instead.
Programming / Re: First Thing First, Learn To Program! by progeek37(m): 12:40pm On Oct 08, 2020
Join my coding group and add your experience to the group. If you are new to coding you can subscibe to my tutorial class instead.
Programming / Re: Free Coding Ask And Answer (CAA) Group by progeek37(m): 12:40pm On Oct 08, 2020
Join my coding group and add your experience to the group. If you are new to coding you can subscibe to my tutorial class instead.
Programming / Re: Free Coding Ask And Answer (CAA) Group by progeek37(m): 4:55pm On Oct 06, 2020
Learn to code and algorithms and data structures. Subcribe to my tutorial today by sending me a WhatsApp message
Programming / Re: First Thing First, Learn To Program! by progeek37(m): 4:55pm On Oct 06, 2020
Learn to code and algorithms and data structures. Subcribe to my tutorial today by sending me a WhatsApp message
Programming / Re: The Fail-safe Way For You To Become A Good Computer Programmer by progeek37(m): 4:54pm On Oct 06, 2020
Learn to code and algorithms and data structures. Subcribe to my tutorial today by sending me a WhatsApp message
Programming / Re: You Would Better Start Programming With Java Or C# by progeek37(m): 4:54pm On Oct 06, 2020
Learn to code and algorithms and data structures. Subcribe to my tutorial today by sending me a WhatsApp message
Programming / Re: First Thing First, Learn To Program! by progeek37(m): 8:37pm On Oct 01, 2020
Join my class to learn how to code from scratch and learn algorithms and data structures. Send me a WhatsApp message today.
Programming / Re: The Fail-safe Way For You To Become A Good Computer Programmer by progeek37(m): 8:37pm On Oct 01, 2020
Join my class to learn how to code from scratch and learn algorithms and data structures. Send me a WhatsApp message today.
Programming / Re: Learn The Fundamental Of Programming Using The Zoom App. by progeek37(m): 9:38pm On Sep 16, 2020
Join my tutorial class today and experience a leap in your coding skills -- strictly on algorithm and data structures. Send me a message on WhatsApp
Programming / Re: Learn The Fundamentals Of Algorithms And Data Structures. by progeek37(m): 9:37pm On Sep 16, 2020
Join my tutorial class today and experience a leap in your coding skills -- strictly on algorithm and data structures
Programming / Re: The Fail-safe Way For You To Become A Good Computer Programmer by progeek37(m): 9:37pm On Sep 16, 2020
Join my tutorial class today and experience a leap in your coding skills -- strictly on algorithm and data structures
Programming / Re: Tips On Solving Programming Problems by progeek37(m): 1:11pm On Sep 16, 2020
Subscribe to my Zoom tutorial today and experience a leap in your coding skill. Send me a WhatsApp message for details.
Programming / Re: The Fail-safe Way For You To Become A Good Computer Programmer by progeek37(m): 1:11pm On Sep 16, 2020
Subscribe to my Zoom tutorial today and experience a leap in your coding skill. Send me a WhatsApp message for details.
Programming / Re: You Would Better Start Programming With Java Or C# by progeek37(m): 1:10pm On Sep 16, 2020
Subscribe to my Zoom tutorial today and experience a leap in your coding skill. Send me a WhatsApp message for details.

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (of 13 pages)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 25
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.