https://github.com/bramtechs/leetcode
Hire me pls
https://github.com/bramtechs/leetcode
Last synced: 5 months ago
JSON representation
Hire me pls
- Host: GitHub
- URL: https://github.com/bramtechs/leetcode
- Owner: bramtechs
- Created: 2023-01-31T15:18:29.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-12T22:27:53.000Z (about 3 years ago)
- Last Synced: 2025-06-23T07:40:22.746Z (12 months ago)
- Language: TypeScript
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```