An open API service indexing awesome lists of open source software.

https://github.com/bramtechs/leetcode

Hire me pls
https://github.com/bramtechs/leetcode

Last synced: 5 months ago
JSON representation

Hire me pls

Awesome Lists containing this project

README

          

# Leetcode solutions

My solutions to [Leetcode](leetcode.com) problems.

[My Leetcode profile](https://leetcode.com/bramtechs/).

_"I want to get hired at a FANG company, buy a Macbook and drink Caffè Lattes at Starbucks all day."_

## Running

### C/C++
_Example:_

```console
gcc -O3 0001-two-sum.c && ./a.out && rm ./a.out
g++ -O3 1929-array-concatination.cpp && ./a.out && rm ./a.out
```

### Typescript/Javascript

I use [bun](https://bun.sh/) to run my Typescript and Javascript files. It's easy to use and ***blazingly fast***.

_Example:_

```console
bun 0013-roman-to-integer.ts
```

### Ruby

_Example:_

```console
ruby 0014-longest-common-prefix.rb
```