I applied online. I interviewed at Crossbeam (Philadelphia, PA) in Aug 2021
Interview
Screening/Intro, short take-home, 3 hours of remote interviews. The intro includes helpful information on the company, structure, funding, history and mission. Take-home assignment is language agnostic. You can take as much time as you need.
# An 'expression' is defined as a collection of terms where every term within it is either:
# - A variable (e.g. A, B, C)
# - A boolean operator (AND or OR)
# - A nested expression (i.e. another collection of terms)
# Write a function that when given an expression written in infix notation, e.g.:
# [A AND [B OR C]]
# Returns the same expression but instead written in prefix notation, e.g.:
# [AND A [OR B C]]
# Note: Parsing and tokenizing expressions is not a part of the task.
# You can expect the input value will be in a language-friendly formatted collection, e.g.:
# ["A", "AND", ["B", "OR", "C"]]
"
First talk with in house recruiter, then sent a code challenge. Code challenge was clear and fun, with the opportunity to learn something new. I stopped there because I took another offer.