Iată lista ajustată, optimizată specific pentru LLM-uri:
1. Introduction to Linear Algebra — Gilbert Strang Vectori, matrici, transformări. Fără asta nu înțelegi nici embeddings, nici attention.
| #include <iostream> | |
| using namespace std; | |
| class Contor { | |
| private: | |
| static int numarObiecte; | |
| public: |
| #include <iostream> | |
| #include <fstream> | |
| #include <vector> | |
| #include <cmath> | |
| #include <algorithm> | |
| using namespace std; | |
| //CLASA PUNCT | |
| class Punct { |
| /* | |
| ioana ---> danaia | |
| EDIT DISTANCE | |
| ------------- | |
| cuvant1 --->cuvant2 | |
| source ---> destinatie |
| #include <iostream> | |
| #include <cmath> | |
| #include <vector> | |
| using namespace std; | |
| struct Point { | |
| double x, y; | |
| }; |
| #include <iostream> | |
| #include<unistd.h> | |
| using namespace std; | |
| int main(int argc, char const *argv[]) | |
| { | |
| if( fork() ) { |
| Algoritmul Boyer Moore Vote MAjority Element | |
| int count = 0 | |
| int candidate = 0 | |
| for(int num: nums) { | |
| if(count == 0) { |
| import java.util.Scanner; | |
| //Turnurile din Hanoi (DIVIDE ET IMPERA) | |
| /* | |
| Problema: | |
| Se dau 3 tije simbolizate a, b, c. |
| import java.util.Scanner; | |
| public class FalseAlarm { | |
| static Scanner scanner = new Scanner(System.in); | |
| static void solve() { | |
| int n = scanner.nextInt(); //citim size array |
| /* | |
| 2^10 | |
| pow(2,10) | |
| 2 * 2 * 2 * ....* 2 | |
| de 10 ori | |
| fast_pow(2,10) | |
| log n = log 10 = logaritm in baza 2 din 10 = 3 |