Skip to content
View asa55's full-sized avatar
🤓
~
🤓
~

Highlights

  • Pro
Block or Report

Block or report asa55

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
asa55/README.md

Coffee break, back shortly ☕

Pinned

  1. reversestringwithrecursion.cpp reversestringwithrecursion.cpp
    1
    // How can a given string be reversed using recursion?
    2
    
                  
    3
    #include <iostream>
    4
    #include <string>
    5
    
                  
  2. eigenpractice.cpp eigenpractice.cpp
    1
    #include "../CppLibs/Eigen/eigen-3.3.7/Eigen/Dense"
    2
    #include <iostream>
    3
    
                  
    4
    #define print(s) std::cout << s << std::endl //I know, I know. But it's one line and won't break anything.
    5
    
                  
  3. manuallytranspose3by3mat.cpp manuallytranspose3by3mat.cpp
    1
    // manually transpose a 3x3 matrix
    2
    /*
    3
        a  b  c     a  d  g
    4
        d  e  f  ~  b  e  h
    5
        g  h  i     c  f  i
  4. allocateonstackvheap.cpp allocateonstackvheap.cpp
    1
    #include <iostream>
    2
    #include <string>
    3
    
                  
    4
    struct vector3 { float x, y, z; }; // struct or class, doesn't matter
    5
    
                  
  5. anagramcheck.cpp anagramcheck.cpp
    1
    // How do you check if two strings are anagrams of each other?
    2
    
                  
    3
    #include <iostream>
    4
    #include <string>
    5
    #include <algorithm>
  6. PyVsJS.md PyVsJS.md
    1
    
                  
    2
    |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` |