Skip to content

Solutions, in multiple languages, to practices / challenges from platfforms like #codewars, #leetcode, #codeforces, etc.

License

Notifications You must be signed in to change notification settings

PChaparro/coding-practices

Repository files navigation

🔥 Coding Practices

In this repository you can find some coding practices from different sources like CodeWars, LeetCode, HackerRank, etc.

💻 Technologies

🟦 TypeScript

To run and test the TypeScript code, I'm using Deno instead of Node as the runtime environment, so that I can run the .ts files directly without the need of transpiling them to .js files:

deno run <file_name>.ts

Similarly, to run the tests, you can use the following command:

deno test <file_name>.ts

🇨 C++

To run and test the C++ code, I'm using g++ compiler:

g++ <file_name>.cpp -o <file_name>.bin

After compiling the code, you can run the binary file:

./<file_name>.bin

You can compile and run the code using the following one-liner:

g++ <file_name>.cpp -o <file_name>.bin && ./<file_name>.bin

About

Solutions, in multiple languages, to practices / challenges from platfforms like #codewars, #leetcode, #codeforces, etc.

Topics

Resources

License

Stars

Watchers

Forks