
Muhammad Hunain
@Hunain_5698
Followers
52
Following
211
Media
77
Statuses
770
YouTube videos Download. I made a program to download YouTube videos in high or low quality and changing download directory .To download video in high quality write 'best' and for low quality write 'worst' instead of 'best' as given in pic. #Python #YouTubeDownload #YouTube
0
0
4
Right now highly involved in sql and doing projects as well.And found this basic join methods, like what they do and how there syntax looks like. P.s: Will share projects soon. #SQL.#RDBS.#Join.#mysql.#PostgreSQL.#pythonprogramming
0
0
1
Day 11/100.LeetCode challenge. Task: Find the first unique character in the string. Steps:.1. Create a dictionary with key as character and value as number of times character appeared.2. Return index position if key ==1 else return -1. #Python.#Leetcode.#100daysofcodechallenge
0
0
0
Day 10/100.LeetCode challenge. Task: Find the number of deep nested parentheses. Steps:.1. Look for ( in the string and get total.2. if count< total, then count=total. 3. look for ) and subtract. Further detail with solution is below. #Python.#leetcode.#100daysofcodechallenge
0
0
1
Day 09/100.LeetCode challenge. Task: Excel Sheet Column Number. Steps:.1. Find order value of given Alphabet and subtract -64 to get the actual value of alphabet.2. Then multiply that value to 26 in order to get the desired Column Number. #Python.#leetcode.#100daysofcodechallenge
0
0
0
Day 08/100.LeetCode challenge. Task: valid palindrome.Steps:.1. Convert str in lowercase.2. Iterate through str using for loop.3. Check if i is.alnum() add into empty str.4. Compare str with itself in reverse order and return. Further detail below.#Python.#leetcode.#100DaysOfCode
0
0
0
Day 07/100.LeetCode challenge. Task: Climbing Stairs. Steps:.1. Return 1 if x is 0 or 1.2. Use for loop,apply Fibonacci approach.3. Return that value. Detail with solution is below. P.s: Recursion approach can be used but time complexity is O(2^n).#Python.#leetcode.#100DaysOfCode
0
0
0
Day 06/100.LeetCode challenge. Task: Plus one to list and return. Steps:.1. Unpack list using for loop, made str of num.2. Convert str num into integer then add 1.3. Apply another for loop, append num to empty list.Detail with solution is below. #Python.#Leetcode.#100DaysOfCode
0
0
0
RT @Python_Dv: Build A Simple Calculator Using Python Tkinter GUI. #python #tkinter #gui #programming #developer #m….
0
23
0
Day 05/100.LeetCode challenge. Task: Find first index position of substring in the word. Approach.1. Check substring in word or not.2. If yes use .find() method to detect first occuring index position and return. Detail with solution is below. #Python.#leetcode .#100daysofcode
0
0
3
Day 04/100.LeetCode challenge. Task: Remove Duplicates from Sorted Array. An array having numbers in ascending order or sorted array. Return the unique elements from the array with it's length. Further detail with solution is given below. #python .#leetcode .#100DaysOfCode
0
1
0
Day 03/100 .LeetCode challenge. Task:.1. Merge Two sorted list using the nodes.2. The final list should be sorted. Further details with solution is below . P.s: Don't usd + operator to concatenate the list. #Python .#PythonAi .#leetcode .#100DaysOfCode .#100daysofcodechallenge
1
1
0
Hi, X family. Today I decided to challenge myself with a 100 day LeetCode challenge. I will update the progress on daily basis here. So stay tuned for some interesting and amazing posts!! . #Python .#pythonprogramming .#leetcode .#100DaysOfCode .#100DaysOfLeetCode
0
0
0
Important Functions and their usage. #pythonprogramming .#python.#Functions #Loops.#String #integer #float .#conditionalloops
0
1
2
Important methods.1. Set.2. Dictionary.3. List.#Python.#pythonprogramming .#Methods.#Set.#Dictionary .#List
0
1
1