Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 774 Bytes

File metadata and controls

40 lines (29 loc) · 774 Bytes

HackerRank

Count Elements Greater Than Previous Average

Find the Smallest Missing Positive Integer

Test Codes

# Python
python3 ./<solution>.py

# java
javac "<solution>.java"
java <solution>

# Go
go run <solution>.go

# Rust
rustc <solution>.rs
./<solution>

# C++
g++ -o <executable> <solution>.cpp
./<executable>

# Typescript
npx ts-node "<solution>.ts"