Last active
December 15, 2024 14:48
-
-
Save up1/dfd4dd67b60d58c4d135837920eb928a to your computer and use it in GitHub Desktop.
Programming :: performance
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$go go build -o main main.go | |
$./main | |
# Before | |
Number of primes found: 50847534 | |
Time taken: 9.29 seconds | |
# After | |
Number of primes found: 50847534 | |
Time taken: 5.34 seconds | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$javac PrimeNumbers.java | |
$java PrimeNumbers | |
# Before | |
Number of primes found: 50847534 | |
Time taken: 8.89 seconds | |
# After | |
Number of primes found: 50847534 | |
Time taken: 6.21 seconds |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$dotnet build | |
$dotnet run bin/Debug/net9.0/csharp.dll | |
# Before | |
Number of primes found: 50847534 | |
Time taken: 10.55 seconds | |
# After | |
Number of primes found: 50847534 | |
Time taken: 9.39 seconds |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment