Programming with Sikander
Programming with Sikander
  • 109
  • 288 327
Python Sort vs Sorted
In Python, sort() is a list method that sorts the list in place and returns None, modifying the original list. In contrast, sorted() is a built-in function that works on any iterable and returns a new sorted list, leaving the original data unchanged. Use sort() when you want to modify a list directly and sorted() when you need a sorted copy without altering the original.
Переглядів: 32

Відео

Python Map function
Переглядів 2328 днів тому
The map function in Python applies a specified function to each item in an iterable (like a list or tuple) and returns a map object (an iterator). It is useful for performing transformations or calculations on data without using explicit loops.
Tuple in Python
Переглядів 4128 днів тому
Discover the power of tuples in Python! In this video, we’ll explore what tuples are, how they differ from lists, and why they are perfect for storing immutable data. Learn how to create, access, and manipulate tuples with practical examples. Whether you’re a beginner or brushing up your Python skills, this video has got you covered.
Mettl Platform Demo
Переглядів 2,2 тис.11 місяців тому
Mettl Assessment Tool is a comprehensive platform designed for conducting skill assessments and talent measurement. It offers a wide range of customizable tests and evaluations to help businesses and educational institutions make informed decisions about hiring, training, and development. With its user-friendly interface and advanced analytics, Mettl enables efficient and objective evaluation o...
C++ interview Question | Template instantiation
Переглядів 245Рік тому
Templates allow you to write generic code that can work with different types without specifying them beforehand. Template instantiation occurs when the compiler generates actual code for a template with specific template arguments. Template instantiation allows you to write generic code that can be reused with different types while benefiting from type safety and avoiding code duplication.
LinkedList | Merge two Sorted List
Переглядів 328Рік тому
A linked list is a data structure used to store and manage collections of data. It is a linear data structure, meaning that the elements in a linked list are stored in a sequence, and each element is called a node. Unlike arrays, linked lists do not store their elements in contiguous memory locations; instead, they use pointers or references to connect the nodes. Given pointers to the heads of ...
Hackerrank | Data Structure | Compare Linked List
Переглядів 135Рік тому
In this video lecture, we will discuss how to compare two Linked List. www.hackerrank.com/challenges/compare-two-linked-lists/problem #datastructures #linkedlists #hackerrank
Reverse Order of Words | C++
Переглядів 145Рік тому
In this video lecture we will discuss how to reverse the order of words. The problem is solved using Stack Data Structure of C STL. The same problem is also solved using Python in this video: ua-cam.com/video/sYe6OUPWgu4/v-deo.html Code Link: onlinegdb.com/7xcwtn1sDd #interviewquestions #datastructures #strings
Interview Question | Data Structure | Print words of string in reverse order
Переглядів 115Рік тому
In this video lecture we will discuss how to reverse the order of words. The problem is solved using two methods. 1. Splitting string into words and print the elements of List in reverse order using reversed function. 2. Using Stack Data Structure. Code Link: onlinegdb.com/U_UgRbVBvZ #interviewquestions #pythonprogramming #pythoninterviewquestions #programmingwithpython #datastructures #strings
Interview Question | C++ | Reverse individual words in a String using Stack
Переглядів 122Рік тому
In this video lecture we are solving an Interview Question based on Stack Data Structure. Given a string of multi-word, we need to reverse individual words of the string. This problem is solved using C STL std::stack. #interviewquestions #datastructures #stack #cppprogramming #stl
Interview Questions | Reverse Individual words of String
Переглядів 88Рік тому
In this video lecture we will discuss how to reverse individual words of a given string. The problem is solved using two methods. 1. Splitting string into words and reversing individual words 2. Using Stack Data Structure. Code Link: onlinegdb.com/_hoWnMdnW #interviewquestions #pythonprogramming #pythoninterviewquestions #programmingwithpython
Hackerrank | Data Structure | LinkedList | Print in Reverse
Переглядів 106Рік тому
In this video lecture we have discussed how to print the elements of Linked List in Reverse Order. It is implemented using recursion. It is visually demonstrated using PythonTutor.org. www.hackerrank.com/challenges/print-the-elements-of-a-linked-list-in-reverse/problem?isFullScreen=false Link to Code: onlinegdb.com/l7kfc5xRgj #hackerrank #hackerranksolutions #datastructures #linkedlists #cprogr...
HackerRank | LinkedList | Reverse a List
Переглядів 116Рік тому
In this video lecture we are learning about reverse the Linked List. leetcode.com/problems/reverse-linked-list/description/ www.hackerrank.com/challenges/reverse-a-linked-list/problem. Code: onlinegdb.com/DFJN6rZ5d #datastructures #linkedlists #hackerrank #leetcode #hackerranksolutions
HackerRank | Data Structures | Delete a node
Переглядів 256Рік тому
In this video, I have explained on how to solve "Delete a node" at a specific position in a linked list using loops and simple logic in C. This hackerrank problem is a part of Problem Solving | Practice | Data Structures | Linked Lists | Delete a Node. www.hackerrank.com/challenges/delete-a-node-from-a-linked-list/problem Link to Code : onlinegdb.com/WfYbqUvwN
HackerRank | Data Structures | Insert a node at Specific Position in a Linked List.
Переглядів 184Рік тому
In this video, I have explained on how to solve insert a node at a specific position in a linked list using loops and simple logic in C. This hackerrank problem is a part of Problem Solving | Practice | Data Structures | Linked Lists | Insert a node at a specific position in a linked list and solved in C. The complexity of this solution is O (n). Assumptions: a. The dynamically allocated memory...
Hackerrank | Data Structures | Insert a Node at the Tail of a Linked List
Переглядів 177Рік тому
Hackerrank | Data Structures | Insert a Node at the Tail of a Linked List
HackerRank | Data Strucutre | Insert a node at the head of a link
Переглядів 202Рік тому
HackerRank | Data Strucutre | Insert a node at the head of a link
Hackerrank | Python | Print Function
Переглядів 201Рік тому
Hackerrank | Python | Print Function
Hackerrank | Left Rotate | One line solution in Python
Переглядів 234Рік тому
Hackerrank | Left Rotate | One line solution in Python
Hackerrank | Python | Find the Runner-Up Score
Переглядів 877Рік тому
Hackerrank | Python | Find the Runner-Up Score
Hackerrank | Python | Designer Door mat
Переглядів 700Рік тому
Hackerrank | Python | Designer Door mat
Data Analysis using Pandas || concatenate DataFrames
Переглядів 126Рік тому
Data Analysis using Pandas || concatenate DataFrames
Pandas - rank method
Переглядів 325Рік тому
Pandas - rank method
Pandas - max, nlargest, nsmallest
Переглядів 174Рік тому
Pandas - max, nlargest, nsmallest
Pandas DataFrame
Переглядів 215Рік тому
Pandas DataFrame
Accessing Elements of vector using operator [] and at().
Переглядів 231Рік тому
Accessing Elements of vector using operator [] and at().
Search for a character in a string using strchr, strrchr
Переглядів 446Рік тому
Search for a character in a string using strchr, strrchr
strtok - C String tokenizer
Переглядів 1,4 тис.Рік тому
strtok - C String tokenizer
C Interview Question: Difference between memcpy and strcpy
Переглядів 346Рік тому
C Interview Question: Difference between memcpy and strcpy
Python Interview Question - ++ and --
Переглядів 144Рік тому
Python Interview Question - and

КОМЕНТАРІ