Coffee break, back shortly ☕
Pinned Loading
-
reversestringwithrecursion.cpp
reversestringwithrecursion.cpp 1// How can a given string be reversed using recursion?
23#include <iostream>
4#include <string>
5 -
eigenpractice.cpp
eigenpractice.cpp 1#include "../CppLibs/Eigen/eigen-3.3.7/Eigen/Dense"
2#include <iostream>
34#define print(s) std::cout << s << std::endl //I know, I know. But it's one line and won't break anything.
5 -
manuallytranspose3by3mat.cpp
manuallytranspose3by3mat.cpp 1// manually transpose a 3x3 matrix
2/*
3a b c a d g
4d e f ~ b e h
5g h i c f i
-
allocateonstackvheap.cpp
allocateonstackvheap.cpp 1#include <iostream>
2#include <string>
34struct vector3 { float x, y, z; }; // struct or class, doesn't matter
5 -
anagramcheck.cpp
anagramcheck.cpp 1// How do you check if two strings are anagrams of each other?
23#include <iostream>
4#include <string>
5#include <algorithm>
-
PyVsJS.md
PyVsJS.md 12|Topic| Python | both | JavaScript |
3|-|-|-|-|
4| comments | `#`<br>`""" """` | | `//`<br>`/* */` |
5| declaration |`my_var = 5`| | `var myVar = 5`<br>`let myVar = 5` <br>`const myVar = 5` |
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.