Ir al contenidoIr al pie de página
  • Empleos
  • Empresas
  • Sueldos
  • Para empleadores

      Impulsa tu carrera profesional

      Averigua cuánto podrías ganar, encuentra el empleo perfecto y comparte información sobre tu vida laboral y personal de forma anónima.

      employer cover photo
      employer logo
      employer logo

      Two Sigma

      Empleador activo

      Información
      Evaluaciones
      Pago y prestaciones
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Evaluaciones de Two Sigma | Empleos en Two Sigma | Sueldos en Two Sigma | Prestaciones en Two Sigma
      Entrevistas en Two SigmaEntrevistas para el cargo de Systems Developer en Two SigmaEntrevista en Two Sigma


      Glassdoor

      • Acerca de
      • Premios
      • Blog
      • Contacto

      Empleadores

      • Cuenta de empleador gratuita
      • Centro de empleador

      Información

      • Ayuda
      • Pautas
      • Condiciones de uso
      • Privacidad y opciones de anuncios
      • No vender ni compartir mi información
      • Herramienta de autorización de cookies

      Trabaja con nosotros

      • Anunciantes
      • Oportunidades laborales
      Descargar aplicación

      • Buscar por:
      • Empresas
      • Empleos
      • Ubicaciones

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor", "Worklife Pro", "Bowls" y sus logotipos son marcas comerciales registradas de Glassdoor LLC.

      Empresas seguidas

      Sigue a tus empresas favoritas para estar al tanto de las últimas oportunidades y disponer de información desde adentro.

      Búsquedas de empleo

      Recibe recomendaciones y actualizaciones personalizadas al iniciar tu búsqueda.

      Las mejores empresas en cuanto a "Remuneración y prestaciones" cerca de ti

      avatar
      J.P. Morgan
      3.8★Remuneración y prestaciones
      avatar
      Citi
      3.6★Remuneración y prestaciones
      avatar
      Goldman Sachs
      3.6★Remuneración y prestaciones
      avatar
      Morgan Stanley
      3.6★Remuneración y prestaciones

      Entrevista para Systems Developer

      9 de ago de 2012
      Candidato de entrevista anónimo
      New York, NY
      Sin ofertas
      Experiencia positiva
      Entrevista difícil

      Solicitud

      Me postulé a través de un reclutador. El proceso tomó 1 día. Acudí a una entrevista en Two Sigma (New York, NY)

      Entrevista

      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.

      Preguntas de entrevista [1]

      Pregunta 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 respuestas
      6