Hudson River Trading OA Experience: Two Trading-Style Coding Questions Breakdown
The article discusses the online assessment experience for Hudson River Trading, focusing on two coding questions related to trading systems. The author emphasizes the importance of speed and implementation quality over pure algorithm difficulty. Preparation tips are provided for candidates looking to succeed in similar assessments.
- ▪The online assessment included two coding questions centered around trading system simulations.
- ▪The first question involved simulating an order matching engine with specific constraints.
- ▪The second question required optimizing profit from market signals using dynamic programming.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3089650) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } net programhelp Posted on Apr 28 Hudson River Trading OA Experience: Two Trading-Style Coding Questions Breakdown #algorithms #career #coding #interview I recently completed the online assessment for Hudson River Trading (HRT), and my biggest takeaway was this: the questions themselves were not impossible, but the time pressure was very real.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV Community.