← Back to Directory

ServiceNow

Large Enterprises

ServiceNow is a leading enterprise software company that provides a cloud-based platform for digital workflow automation, primarily known for IT service management (ITSM), IT operations management, and business process automation. It serves large organizations across industries seeking to streamline and modernize their operations.

2 interview notes · updated Jul 2026

ServiceNow·Software Engineer·Technical Phone Screen

Jun 2026
Pure coding round at what seemed like an acquired subsidiary under ServiceNow. One question, LeetCode-style, nothing behavioral at all.
  • Given a sorted integer array, a target value, and an integer k, find the k closest elements to the target in the array.

“Classic binary search plus two-pointer setup.”

View Post

ServiceNow·Software Engineer·Technical Phone Screen

Jun 2026
ServiceNow coding round with a string manipulation problem that had two parts. The second part tripped me up more than I expected for something that sounds straightforward.
  • Given a string where you can only replace characters (no insertions or deletions), find the minimum number of replacements to satisfy a given condition like making it a palindrome. Then, among all strings that achieve that minimum, return the lexicographically smallest one.

“Part one wasn't bad, I got the greedy approach pretty quickly.”

View Post