Glossary

Avoid string operations in tight loops

string concatenation creates new strings. - **Prefer arrays over linked lists** when random access is needed — arrays have better cache locality. - **Use `FillChar`** to initialize large arrays instead of looping. - **Avoid repeated string comparisons** — if you compare the same string many times, c

Learn More

Related Terms