ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

3,324 results

Topico
Epistemic Realism and Algorithmic Complexity Analysis

In this technical deep dive, we investigate the profound epistemological tension at the heart of computer science. We explore the ...

6:15
Epistemic Realism and Algorithmic Complexity Analysis

0 views

1 day ago

CS50
CS50 for Business - Lecture 1 - Analyzing Algorithms

This is Lecture 1 (the second!) of CS50 for Business on Analyzing Algorithms. Learn how to analyze and optimize algorithms for ...

1:21:30
CS50 for Business - Lecture 1 - Analyzing Algorithms

8,982 views

4 days ago

TILOS AI
Transformers Learn Generalizable Chain-of-Thought Reasoning via Gradient Descent

TITLE: Transformers Learn Generalizable Chain-of-Thought Reasoning via Gradient Descent SPEAKER: Yuejie Chi (Yale ...

56:00
Transformers Learn Generalizable Chain-of-Thought Reasoning via Gradient Descent

209 views

6 days ago

ICPC Delta Community
Mastering Complexity Analysis | Asymptotic Notations & Time Complexity – Session 06
1:03:06
Mastering Complexity Analysis | Asymptotic Notations & Time Complexity – Session 06

40 views

6 days ago

Topico
The RAM Model and Foundations of Computational Complexity

Uniform versus Logarithmic cost criteria in complexity analysis. - Physical limitations of the memory hierarchy and the speed of ...

7:25
The RAM Model and Foundations of Computational Complexity

0 views

4 days ago

Gate Astra
13 Asymptotic Analysis [Big O Notation]

gatecse #datastructures #algorithms #bigonotation #sorting #timecomplexity #spacecomplexity.

12:49
13 Asymptotic Analysis [Big O Notation]

10 views

22 hours ago

myCodeVerse
Time Complexity Explained | Master Big O Notation

Time Complexity Explained | Master Big O Notation Want to understand how efficient your code really is? In this video, we break ...

34:03
Time Complexity Explained | Master Big O Notation

68 views

2 days ago

CodeLucky
Adjusted R-Squared vs R-Squared: The Penalty for Complexity Explained

Why does R-squared always go up when you add variables? And why is that a problem? In this video, we break down the ...

4:33
Adjusted R-Squared vs R-Squared: The Penalty for Complexity Explained

6 views

4 days ago

Benabub
Longest Substring Without Repeating Characters — LeetCode #3 | Python Algorithm Visualization

*Complexity Analysis:* - Time Complexity: O(n) — we traverse the string of length n once. - Space Complexity: O(k) — where k is ...

1:54
Longest Substring Without Repeating Characters — LeetCode #3 | Python Algorithm Visualization

2 views

4 days ago

Benabub
Longest Subarray of 1's After Deleting One Element — LeetCode #1493 | Python Algorithm Visualization

*Complexity Analysis:* - Time Complexity: O(n) — we traverse the array of n elements once with the sliding window. - Space ...

2:20
Longest Subarray of 1's After Deleting One Element — LeetCode #1493 | Python Algorithm Visualization

0 views

6 days ago

Claudius Papirus
Donald Knuth's Open Problem Was Solved by Claude in 1 Hour

Donald Knuth — the author of The Art of Computer Programming — just published a paper called "Claude's Cycles." He named it ...

7:48
Donald Knuth's Open Problem Was Solved by Claude in 1 Hour

23,858 views

2 days ago

Dr. Hasan Jamal
Introduction To Algorithms

First lecture of the Design and Analysis of Algorithms course which discusses the following: What is Algorithm? why study ...

26:19
Introduction To Algorithms

37 views

6 days ago

Benabub
Substrings of Size Three with Distinct Characters — LeetCode #1876 | Python Algorithm Visualization

*Complexity Analysis:* - Time Complexity: O(n) — we traverse the string of length n once, processing windows of constant size.

1:04
Substrings of Size Three with Distinct Characters — LeetCode #1876 | Python Algorithm Visualization

0 views

5 days ago

DevOps With Yannick
CSCI 3412: Introduction to Algorithmic Analysis and Design

Algorithms This is the central topic of the CSCI 3412 course, defined as a finite sequence of computational steps and instructions ...

5:52
CSCI 3412: Introduction to Algorithmic Analysis and Design

25 views

4 days ago

Terminal Geeks
Binary Search | Finding floor in sorted array

... an example • Time Complexity and Space Complexity analysis Binary Search is one of the most important algorithms for **Data ...

19:02
Binary Search | Finding floor in sorted array

0 views

5 days ago

Online Math Club
A gentle introduction to NP Completeness by Dr Girija Limaye

OMC 2.0 is a reboot of the original club wherein we will be conducting weekly math olympiad sessions starting from basic topics in ...

2:17:59
A gentle introduction to NP Completeness by Dr Girija Limaye

235 views

5 days ago

Digital CS Guru
🔥 DSA Lecture 8 | Asymptotic Analysis of Algorithms | Big O, Big Ω, Big Θ Notations Explained

DSA Lecture 8 – Asymptotic Analysis of Algorithms In this lecture, we explain Asymptotic Analysis of Algorithms in a simple and ...

24:42
🔥 DSA Lecture 8 | Asymptotic Analysis of Algorithms | Big O, Big Ω, Big Θ Notations Explained

13 views

4 days ago

DSA with Golang
LeetCode 169 | Majority Element | Golang Solution | Coding Interview Problem

... complexity analysis This is a common coding interview problem and an important concept in Data Structures and Algorithms.

15:32
LeetCode 169 | Majority Element | Golang Solution | Coding Interview Problem

26 views

3 days ago

@MSGALLERY
Characteristics of an Algorithm
14:19
Characteristics of an Algorithm

0 views

6 days ago

@MSGALLERY
Importance of Algorithm Analysis

1. Need for Algorithm Analysis. 2. Comparison between Linear Search and Binary Search.

12:49
Importance of Algorithm Analysis

0 views

6 days ago

DSA with Golang
LeetCode 31 | Next Permutation | Golang Solution | FAANG Interview Problem

... Permutation algorithm • Step-by-step explanation • Efficient Golang implementation • Time and space complexity analysis If you ...

19:03
LeetCode 31 | Next Permutation | Golang Solution | FAANG Interview Problem

44 views

4 days ago

Daniel Pope
Speech analysis predicts which leaders stay calm when everything breaks

https://beknownonline.com/start Your speech patterns reveal how you will perform under pressure. Most leaders have no idea this ...

0:33
Speech analysis predicts which leaders stay calm when everything breaks

0 views

15 hours ago

Benabub
Find Smallest Letter Greater Than Target — LeetCode #744 | Python Algorithm Visualization

*Complexity Analysis:* - Time Complexity: O(log n) — where n is the length of the letters array. - Space Complexity: O(1) — only ...

0:51
Find Smallest Letter Greater Than Target — LeetCode #744 | Python Algorithm Visualization

0 views

3 days ago

ICPC Future Academy
Design and Analysis of Algorithms: Session #1

ICPC #CompetitiveProgramming #Algorithms #Algorithms #ECPC.

1:03:37
Design and Analysis of Algorithms: Session #1

47 views

6 days ago

Benabub
Substring with Concatenation of All Words — LeetCode #30 | Python Algorithm Visualization

*Complexity Analysis:* - Time Complexity: O(n·L) — where n is the string length and L is the word length, as we process each of ...

3:35
Substring with Concatenation of All Words — LeetCode #30 | Python Algorithm Visualization

3 views

4 days ago