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

      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

      Empresa activa

      Información
      Opiniones
      Sueldos y beneficios
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Opiniones sobre Two Sigma | Ofertas de empleos en Two Sigma | Sueldos en Two Sigma | Beneficios en Two Sigma
      Entrevistas de Two SigmaEntrevistas para el puesto de Systems Developer en Two SigmaEntrevista de Two Sigma


      Glassdoor

      • Acerca de
      • Premios
      • Blog
      • Contacto

      Empresas

      • Cuenta gratuita de empresa
      • Centro de empresas

      Información

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

      Trabaja con nosotros

      • Anunciantes
      • Empleo
      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 de primera mano.

      Búsquedas de empleo

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

      Las mejores empresas en cuanto a «Remuneración y beneficios» cerca de ti

      avatar
      Citi
      3.6★Remuneración y beneficios
      avatar
      Natixis
      3.8★Remuneración y beneficios
      avatar
      Allianz
      3.6★Remuneración y beneficios
      avatar
      BMO Financial Group
      3.5★Remuneración y beneficios

      Entrevista de Systems Developer

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

      Solicitud

      Solicité el puesto a través de un captador. El proceso duró 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