Difference between revisions of "User:Ssvb"

From D Wiki
Jump to: navigation, search
(Associative arrays and hash collisions)
(Associative arrays and hash collisions)
Line 45: Line 45:
  
 
https://forum.dlang.org/post/navsnrjweslsqeaawsev@forum.dlang.org
 
https://forum.dlang.org/post/navsnrjweslsqeaawsev@forum.dlang.org
 +
 +
A hacked solution on codeforces: https://codeforces.com/contest/1676/submission/156707849
  
 
Relevant links:
 
Relevant links:
Line 53: Line 55:
 
* https://github.com/tkaitchuck/aHash/blob/master/compare/readme.md
 
* https://github.com/tkaitchuck/aHash/blob/master/compare/readme.md
 
* https://www.josephkirwin.com/2018/04/07/z3-hash-inversions
 
* https://www.josephkirwin.com/2018/04/07/z3-hash-inversions
 +
* http://emboss.github.io/blog/2012/12/14/breaking-murmur-hash-flooding-dos-reloaded/

Revision as of 06:33, 23 May 2022

D language for programming competitions

Not everything is perfect:

GDC tips and tricks

GDC 11+ requires "-flto" or "-fno-weak-templates" option to avoid a major performance regression: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102765

Shared library linking workaround to run phobos unit tests: https://bugzilla.gdcproject.org/show_bug.cgi?id=199

Demangle symbols: https://dlang.org/phobos/std_demangle.html

Mingw build and test instructions: TODO

Arithmetic overflows

TODO: create a new DIP? https://forum.dlang.org/post/rclilxjpnjvexggncfhd@forum.dlang.org

TODO: Atomic operations and arithmetic overflows?

TODO: Unsigned overflows?

GDC supports "-ftrapv" easter egg option for trapping signed overflows.

Relevant links:

GCC history of -fno-strict-aliasing and -fwrapv:

Associative arrays and hash collisions

https://forum.dlang.org/post/navsnrjweslsqeaawsev@forum.dlang.org

A hacked solution on codeforces: https://codeforces.com/contest/1676/submission/156707849

Relevant links: