Problem database last updated: June 20, 2025

DDocusign logo

Docusign Coding Interview Questions

31 problems · 2 Easy, 24 Medium, 5 Hard · Ranked #60 of 458

Difficulty breakdown

2 Easy

6% · avg 23%

24 Medium

77% · avg 59%

5 Hard

16% · avg 18%

Top topics

array
48.4%
hash-table
38.7%1.7x
sorting
29%2x
string
25.8%
design
19.4%3.3x
breadth-first-search
19.4%2.3x

Interview profile

Based on 31 reported problems, Docusign interviews are in line with industry averages - 16% Hard vs 18% overall. The majority (77%) of questions are Medium difficulty, which is typical for companies that want to see solid fundamentals without excessive trick questions.

Compared to the industry average, Docusign puts unusual emphasis on trie (9.7% of problems, 3.7x the industry average), doubly-linked-list (6.5% of problems, 3.4x the industry average), design (19.4% of problems, 3.3x the industry average). If you're short on time, these are the categories to double down on.

The most common topics are array (48.4%), hash-table (38.7%), sorting (29%), string (25.8%). Problems below are sorted by frequency, the ones at the top are asked most often.

All 31 problems

Implement Trie (Prefix Tree)

Solve

A trie (pronounced as "try") or prefix tree is a tree data structure used to efficiently store and retrieve keys in a dataset of strings. There are various appl...

MediumVery Likely
hash-tablestringdesign

Copy List with Random Pointer

Solve

A linked list of length n is given such that each node contains an additional random pointer, which could point to any node in the list, or null.

MediumVery Likely
hash-tablelinked-list

Merge Intervals

Solve

Given an array of intervals where intervals[i] = [starti, endi], merge all overlapping intervals, and return an array of the non-overlapping intervals that cove...

MediumVery Likely
arraysorting

Design Authentication Manager

Solve

There is an authentication system that works with authentication tokens. For each session, the user will receive a new authentication token that will expire tim...

MediumVery Likely
hash-tablelinked-listdesign

Rotting Oranges

Solve

You are given an m x n grid where each cell can have one of three values:

MediumVery Likely
arraybreadth-first-searchmatrix

Top K Frequent Elements

Solve

Given an integer array nums and an integer k, return the k most frequent elements. You may return the answer in any order.

MediumVery Likely
arrayhash-tabledivide-and-conquer

Integer to Roman

Solve

Seven different symbols represent Roman numerals with the following values:

MediumVery Likely
hash-tablemathstring

Excel Sheet Column Number

Solve

Given a string columnTitle that represents the column title as appears in an Excel sheet, return its corresponding column number.

EasyVery Likely
mathstring

Longest Substring Without Repeating Characters

Solve

Given a string s, find the length of the longest substring without duplicate characters.

MediumVery Likely
hash-tablestringsliding-window

Find Median from Data Stream

Solve

The median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value, and the median is the mean of the two midd...

HardVery Likely
two-pointersdesignsorting

Sort Colors

Solve

Given an array nums with n objects colored red, white, or blue, sort them in-place so that objects of the same color are adjacent, with the colors in the order...

MediumVery Likely
arraytwo-pointerssorting

Search Suggestions System

Solve

You are given an array of strings products and a string searchWord.

MediumVery Likely
arraystringbinary-search

Reaching Points

Solve

Given four integers sx, sy, tx, and ty, return true if it is possible to convert the point (sx, sy) to the point (tx, ty) through some operations, or false othe...

HardVery Likely
math

Reorder Routes to Make All Paths Lead to the City Zero

Solve

There are n cities numbered from 0 to n - 1 and n - 1 roads such that there is only one way to travel between two different cities (this network form a tree). L...

MediumLikely
depth-first-searchbreadth-first-searchgraph

Count Good Nodes in Binary Tree

Solve

Given a binary tree root, a node X in the tree is named good if in the path from root to X there are no nodes with a value greater than X.

MediumLikely
treedepth-first-searchbreadth-first-search

Suppose LeetCode will start its IPO soon. In order to sell a good price of its shares to Venture Capital, LeetCode would like to work on some projects to increa...

HardLikely
arraygreedysorting

Optimal Partition of String

Solve

Given a string s, partition the string into one or more substrings such that the characters in each substring are unique. That is, no letter appears in a single...

MediumLikely
hash-tablestringgreedy

Two Sum

Solve

Given an array of integers nums and an integer target, return the indices of the two numbers that add up to target.

EasyLikely
arrayhash-map

Clone Graph

Solve

Given a reference of a node in a connected undirected graph.

MediumLikely
hash-tabledepth-first-searchbreadth-first-search

3Sum

Solve

Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0.

MediumLikely
arraytwo-pointerssorting

Product of Array Except Self

Solve

Given an integer array nums, return an array answer such that answer[i] is equal to the product of all the elements of nums except nums[i].

MediumLikely
arrayprefix-sum

Merge k Sorted Lists

Solve

You are given an array of k linked-lists lists, each linked-list is sorted in ascending order.

HardLikely
linked-listdivide-and-conquerheap-priority-queue

Insert Delete GetRandom O(1)

Solve

Implement the RandomizedSet class:

MediumLikely
arrayhash-tablemath

Pairs of Songs With Total Durations Divisible by 60

Solve

You are given a list of songs where the ith song has a duration of time[i] seconds.

MediumLikely
arrayhash-tablecounting

Number of Islands

Solve

Given an m x n 2D binary grid grid which represents a map of '1's (land) and '0's (water), return the number of islands.

MediumLikely
arraydepth-first-searchbreadth-first-search

LRU Cache

Solve

Design a data structure that follows the constraints of a Least Recently Used (LRU) cache.

MediumLikely
hash-tablelinked-listdesign

Boats to Save People

Solve

You are given an array people where people[i] is the weight of the ith person, and an infinite number of boats where each boat can carry a maximum weight of lim...

MediumLikely
arraytwo-pointersgreedy

Design Add and Search Words Data Structure

Solve

Design a data structure that supports adding new words and finding if a string matches any previously added string.

MediumLikely
stringdepth-first-searchdesign

House Robber II

Solve

You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed. All houses at this place are arranged in...

MediumLikely
arraydynamic-programming

Number of Atoms

Solve

Given a string formula representing a chemical formula, return the count of each atom.

HardLikely
hash-tablestringstack

Shortest Bridge

Solve

You are given an n x n binary matrix grid where 1 represents land and 0 represents water.

MediumLikely
arraydepth-first-searchbreadth-first-search

How often are these problems asked?

Frequency scores are based on crowdsourced interview reports. A higher score means the problem has been reported more often in recent Docusign interviews.

Very Likely

75-100%

Likely

50-74%

Sometimes

25-49%

Rare

0-24%

Preparing for your Docusign coding interview

Docusign interviews focus heavily on array, hash-table, sorting problems. If you're short on time, these are the categories to prioritize. The problems on this page are sorted by frequency, so start from the top and work your way down.

Beyond solving problems, practice explaining your approach. Docusign interviewers care about your thought process - how you break down a problem, consider edge cases, and evaluate tradeoffs between solutions. A clean O(n) solution you can explain clearly beats an O(log n) solution you can't articulate.

Looking for more companies? Browse all 458 companies in our directory, or sharpen your fundamentals with our free data structure visualizers and AI-powered DSA tutor.

Frequently Asked Questions

What coding problems does Docusign ask in interviews?add

Docusign has been reported to ask 31 distinct coding problems. The most common topics are array, hash-table, sorting. 2 are Easy difficulty, 24 are Medium, and 5 are Hard. Problems are sorted by frequency - the ones at the top are asked most often.

How hard are Docusign coding interviews?add

Based on 31 reported problems, Docusign interviews are in line with industry averages - 16% Hard vs 18% overall. 77% of questions are Medium difficulty. Focus on the high-frequency Medium problems first, then work through the Hard ones.

How should I prepare for a Docusign coding interview?add

Start with the highest-frequency problems listed on this page. Focus on the core topics: array, hash-table, sorting. Practice solving them under time pressure and explaining your approach out loud. Mock interviews with AI can simulate the real experience.

Other companies to explore

Ready to ace your Docusign interview?

Simulate a real Docusign coding interview with an AI interviewer. Get a scorecard with specific feedback on your problem-solving, code quality, and communication.

Simulate a Docusign interview with AIarrow_forward