Aller au contenuAller au pied de page
  • Emplois
  • Entreprises
  • Salaires
  • Pour les employeurs

      Boostez votre carrière

      Découvrez votre salaire potentiel, décrochez des emplois de rêve et partagez vos témoignages de manière anonyme.

      employer cover photo
      employer logo
      employer logo

      Two Sigma

      Employeur impliqué

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur Two Sigma | Offres d’emploi chez Two Sigma | Salaires chez Two Sigma | Avantages sociaux chez Two Sigma
      Entretiens chez Two SigmaEntretiens d’embauche pour Systems Developer chez Two SigmaEntretien chez Two Sigma


      Glassdoor

      • À propos
      • Récompenses
      • Blog
      • Nous contacter
      • Guides

      Employeurs

      • Compte employeur gratuit
      • Centre employeur
      • Blog pour les employeurs

      Informations

      • Aide
      • Règles de la communauté
      • Conditions d'utilisation
      • Confidentialité et choix publicitaires
      • Ne pas vendre ni partager mes informations
      • Outil de consentement aux cookies

      Travailler avec nous

      • Annonceurs
      • Carrières
      Télécharger l'application

      • Parcourir par :
      • Entreprises
      • Emplois
      • Lieux

      Copyright © 2008-2026. Glassdoor LLC. « Glassdoor », son logo, « Worklife Pro » et « Bowls » sont des marques déposées de Glassdoor LLC.

      Entreprises suivies

      Tenez-vous au courant des dernières opportunités et profitez de conseils d’initiés en suivant les entreprises de vos rêves.

      Recherche d’emplois

      Obtenez des recommandations et des mises à jour personnalisées en démarrant vos recherches.

      Meilleures entreprises pour « Rémunération et avantages » près de chez vous

      avatar
      J.P. Morgan
      3.8★Rémunération et avantages
      avatar
      Citi
      3.6★Rémunération et avantages
      avatar
      Allianz
      3.6★Rémunération et avantages
      avatar
      Prudential
      3.8★Rémunération et avantages

      Entretien pour Systems Developer

      9 août 2012
      Candidat à l'entretien anonyme
      New York, NY
      Aucune offre
      Expérience positive
      Entretien difficile

      Candidature

      J'ai postulé via un recruteur. Le processus a pris 1 jour. J'ai passé un entretien chez Two Sigma (New York, NY)

      Entretien

      Exceptional company, some of the most brilliant people work here. It began with a phone interview, where I was asked my background . Then they sent over a "coding test" that had 2 programming questions required to be done in 2 hours, I didnot find them very difficult. It has been put up here before, I got the same questions too. Then they invited me to new york, paid for the coach plane ticket, put me up in the soho grand hotel and reimbursed upto 30$ per meal. The in-person interview was exclusively hard algorithmic questions, specifically the two below.

      Questions d'entretien [1]

      Question 1

      1. You have two strings. A test string and a glob Test string can have a & b, any number of times, any location. Glob can have a, b, ? and *, any number of times, any location. E.g. test= {a,b,a,a,a,a,b,b,b,b,b,b} glob = {a,?, *, b} Now, ? means ANY character, single occurrence. So it's either a or b, one time * means ANY OR NO character, any number of occurrences. E.g. the above glob and test actually match. Problem is: write an algorithm to match glob with test. You MAY NOT use regular expressions :D 2. The input is any string of any length of any characters. Write a program to generate ALL unique permutations of those characters. Unique. You may not store in an array or list, due to memory constraints. e.g. for input of abc your program should give 6 permutations but for aba your program should give 3. Hint: make the list alphabetical.
      3 réponse(s)
      6