KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
algods
★ 9
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
stream-audio-attachment-tutorial
:
A tutorial showing how to send audio attachments in Flutter using Stream.io
Scrimba-Front-End-Path
:
Scrimba Front-End Developer Path Assignments and Projects
MARSARA
:
Validating the Integrity of Audit Logs Against Execution Repartitioning Attacks
angle-docs
:
📖 Comprehensive documentation of the Angle Protocol and other Angle Labs products
Google-Hardware-Product-Sprint
:
Using Python、HTML、Bootstrap、Raspberry-Pi to build an environment detection and plant-care system.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
algods
?
Download (.md)
# algods Данный репозиторий служит шпаргалкой на тренировках по CP, а так же неким наглядным пособием для лекций по алгоритмам # optimization tricks 1. https://dave.cheney.net/high-performance-go-workshop/dotgo-paris.html#bounds_check_elimination 2. build with - `go build -gcflags=-m example.go` and check malloc and other or `go build -gcflags "-m -m" example.go` (max 4 -m flags) 3. build with - `go build -gcflags='-l -l -l' example.go` - to make aggressive inlines (also can use `-l -l` and dont use `-l`) 4. https://habr.com/ru/company/badoo/blog/301990/ # more + add ds AVL tree + https://medium.com/cheat-sheets/cheat-sheet-for-competitive-programming-with-c-f2e8156d5aa9 + https://github.com/helloproclub/competitive-programming-cheat-sheet # run go `cat i.txt | go run main.go > o.txt ` py `cat i.txt | python3 main.py > o.txt ` c++ `g++ -std=c++20 -O2 -lm -o x.bin main.cpp && chmod +x ./x.bin | cat i.txt | ./x.bin > o.txt`