CARVIEW |
Select Language
HTTP/2 200
date: Mon, 21 Jul 2025 16:02:45 GMT
content-type: text/html; charset=utf-8
cf-ray: 962beca7ac64c179-BLR
cf-cache-status: DYNAMIC
cache-control: private
set-cookie: prov=f26fb1ac-e608-482d-b487-d7ed8d329daf; expires=Tue, 21 Jul 2026 16:02:45 GMT; domain=.stackexchange.com; path=/; secure; httponly
strict-transport-security: max-age=31536000; includeSubDomains
vary: Accept-Encoding
content-security-policy: upgrade-insecure-requests; frame-ancestors 'self' https://stackexchange.com
x-frame-options: SAMEORIGIN
x-request-guid: 5ca404aa-b0a0-4d50-bc5e-d891c955f3ef
x-worker-origin-response-time: 682000000
x-dns-prefetch-control: off
set-cookie: prov=f26fb1ac-e608-482d-b487-d7ed8d329daf; Path=/; HttpOnly; Domain=stackexchange.com
set-cookie: __cf_bm=pa8hR0ILPCAz_W7LoYoq_SyfZEv7BxfOPVijN1dQJUU-1753113765-1.0.1.1-XRbjEMyo.k2yXSNhVSy4C0qm1o2Wh2KUL68LwPICCfCepDOc2PPJbbjEYaB72QetPd6W9DuEwbbv7BY6Wir1ft9gv7ntrReXE3EQHI3DyQU; path=/; expires=Mon, 21-Jul-25 16:32:45 GMT; domain=.stackexchange.com; HttpOnly; Secure; SameSite=None
set-cookie: _cfuvid=H40OrwXsC3CDs24fWTuqVZ1lE8JyheqrDpjNk229HfM-1753113765776-0.0.1.1-604800000; path=/; domain=.stackexchange.com; HttpOnly; Secure; SameSite=None
server: cloudflare
content-encoding: gzip
Newest 'performance' Questions - Code Review Stack Exchange
Skip to main content
Stack Exchange Network
Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Visit Stack ExchangeTeams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about TeamsQuestions tagged [performance]
Performance is a subset of Optimization: performance is the goal when you want the execution time of your program or routine to be optimal.
7,757 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
3
votes
2
answers
130
views
Third way to place queens and rooks with the higher score (extension of the queen problem)
Here is a third implementation, the second is in my question Place queens and rooks with the higher score (extension of the queen problem) and an initial one is in my answer for the question N queen ...
4
votes
3
answers
207
views
Swift for CLI tools (traversing directories, reading text files)
To compare ergonomics and performance of some languages for my hobby projects, I have written a simple lines of code counter in Swift, Go, Rust and Python. It scans a given directory tree for source ...
1
vote
0
answers
31
views
Blazor web app using .NET 9: SQLDbSettings Code Optimization
I am developing a Blazor web app using C# .NET 9 in Visual Studio Code. I am using SQL Server 2017. This project is intended for internal company use.
In the ...
4
votes
1
answer
131
views
Place queens and rooks with the higher score (extension of the queen problem)
This is a continuation of the question N queen problem-like (+rooks and a different goal) written by someone else, where I answered.
EDIT I continued to work on the subject and a third implementation ...
2
votes
1
answer
83
views
Locate \r\n\r\n in a HTTP POST request (Uint8Array)
The requirement is to split the headers from the request body, most efficiently.
Possible approaches I have employed and/or considered
Decode to text, match ...
7
votes
3
answers
548
views
Team picker command line application
I've made a program for randomly splitting game participants into different teams. The code works and solves the problem. I'm interested in advice on what you'd do differently or better.
...
3
votes
1
answer
162
views
Synchronize clock tick for timed action
The code shown below goes back to the tutorial How to Use a Timer in Tkinter.
I first simplified the tkinter import by restriction to Python 3.
Then I found a ...
6
votes
1
answer
315
views
Arbitrary-layout Floating-point Number conversion library
This is a library I've been writing, for now named ALFPN, for converting between native floats and layouts that are not native - half, various 8-bit formats etc. ...
2
votes
1
answer
172
views
Attempt at a Different Variation of the strstr(...) Function
I decided to work on an idea I had to 'optimize' the classic C function strstr.
Most of the implementations I had seen that did not make use of advanced ...
6
votes
2
answers
690
views
Weather Observation Station 8 query
Here's my (correct) solution to a HackerRank question:
Weather Observation Station 8
Query the list of CITY names from STATION which have vowels (i.e., a, e, i, o, and u) as both their first and last ...
6
votes
1
answer
563
views
Substring = Permutation of a given pattern
I am working on a problem on LeetCode.
Considering only lowercase characters from 'a' to 'z', I have written some Java code to check if a permutation of a given pattern is a substring of a given ...
14
votes
5
answers
3k
views
Infinite precision integer in C++20
This is my infinite precision integer implemented in C++20. It supports negative numbers. I have implemented addition, subtraction, multiplication and binary integer division, which returns quotient ...
3
votes
1
answer
61
views
More shortest unrestricted paths to touch every square in an n by n grid
This is a part two.
The problem originates from here,
it is solved for \$n<11\$. A GitHub repository for this code, printing paths, and a collection of all proven best paths, it is open to ...
9
votes
3
answers
2k
views
Solver for Wordle puzzle
After a success with the Jumble puzzle solver, I am doing a Wordle puzzle solver. I know many other Wordle solvers have been posted, yet this is my original version, which emphasizes list ...
5
votes
3
answers
223
views
Sieve of Eratosthenes with Wheel Factorization in C++ version 2
I have implemented Sieve of Eratosthenes with Wheel Factorization in C++ again, this time using a bigger wheel and much more complicated C++ syntax, to familiarize myself with C++ and see how fast I ...
- The Overflow Blog
-
- Featured on Meta
-
-
Related Tags
python × 2187
java × 1038
c++ × 985
algorithm × 875
c# × 818
javascript × 701
python-3.x × 628
beginner × 572
programming-challenge × 564
c × 473
strings × 335
array × 291
vba × 263
excel × 261
numpy × 231
php × 225
sql × 218
primes × 192
image × 177
python-2.x × 166
multithreading × 165
matrix × 160
jquery × 157
optimization × 155
pandas × 146
more related tags
Hot Network Questions
- Is a Rakshasa Immune to True Strike?
- Enlarged Graph vertices are covering up edge arrows
- How can I grow kelp or seaweed at home in a small container?
- When should the DM announce an opponent's death?
- Is this an integrated crown race on my bike fork?
- What are the differences between a big jet engine and a small jet engine?
- What does the word "let" mean in mathematics?
- What is the standard for the camera alignment pin?
- Are some of (most of?) what we describe as "mistakes of our senses/perception", mistakes of our reasoning process?
- Parsing \def patterns with braces
- How do I apply a gradient color along the length of a mesh generated by a curve in Geometry Nodes?
- What tools do I need to remove this Shimano bottom bracket marked 'BC 1:37x24 Road'?
- When you view a historical event with an incorrect modern lens
- Uniqueness of the wedge product in Munkres' “Analysis on Manifolds”
- Compiling stand-alone function binaries from the Linux kernel
- Tikz - How to draw multiple arrows between nodes and position them perfectly without the usage of angles?
- Character who gets sued for defamation for getting lawyer's help
- How do we integrate forms on manifolds without a measure?
- How to force drives to be on a predicted device name
- Descale a coffee machine and kettle using a generic product
- Can a 2024 Monk use Stunning Strike with a thrown dagger, javelin or spear?
- Gauge Transformation in Classical Mechanics
- Is Christianity a mystery religion?
- Do any standalone MACs exist?