Zhenya's CV

Photo of me
Brules

Hello, I'm Zhenya

I like to play video games and watch anime.
And also I have a lovely cat named Brules (on the photo).

Why am I here?

Lately, I've been trying to improve my web-dev skills, cause I like to study and explore new stuff. But I'm probably not going to work in some boring company, at least if they don't have a lot of free food. I ❤️ pizza. And also that was a joke. The main reason that has motivated me so far it's the opportunity to bring my ideas to life.

Code

Code is here!
  function constructSubmatrix(m, rtd, ctd) {
    return m
      .filter((_, i) => {
        return !rtd.includes(i);
      })
      .map((row) => {
        return row.filter((_, i) => {
          return !ctd.includes(i);
        });
      });
  }