Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6368027
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:37:25+00:00 2026-05-25T00:37:25+00:00

I recently came across the following interview question: You need to design a system

  • 0

I recently came across the following interview question:

You need to design a system to provide answers to factorials for
between 1 and 100. You can cache 10 numbers. How would you
arrange/manage that cache, and what is the worst case for lookup on a
cache miss.

What do you think would be a suitable answer and what would be the reasoning behind this? Personally, I would cache the 1st ten numbers for the first input, and then subsequently maintain an LRU cache based on the most recent input because people are more likely to repeat searches. Not really sure what the worst case for lookup on cache miss would be though. Probably O(n) if you use a dynamic programming approach in implementing the factorial function. What do you think?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T00:37:25+00:00Added an answer on May 25, 2026 at 12:37 am

    subsequently maintain an LRU cache based on the most recent input because people are more likely to repeat searches

    That might be a reasonable design choice, but in the interview I’d phrase that more as a question to the interviewer: “would it be reasonable to assume that calls will be more like to be made with recent values, or is there some other expected grouping (large numbers will be requested more often then small or vice-versa)?”

    For example, it might make sense to cache LRU, but never throw away the values for 10, 20, 30, 40, etc. That way the worst case for calculating a factorial once the cache fills with those values is to have to perform 10 multiplications.

    Another consideration you might make is that computers can very easily deal with certain factorials:

    • 12! is the largest that can be held in a 32-bit word.
    • 20! is the largest that can be held in a 64-bit word.
    • 34! is the largest that can be held in a 128-bit word.

    Since today’s machines can easily deal with 64-bit arithmetic (maybe even 128 bit arithmetic), it might also make sense to never cache a value for 20! or below once the cache fills with values greater than that.

    The worst case for a lookup on a cache miss would depend on how you store the cache. Is it an array sorted by the argument to the function? (look-up is O(log n)) Is it an array in LRU order? (look up on cache miss is O(n)). I think you’d also want to make clear that you’d want a cache lookup to always return the highest value in the cache that’s less than what you’re looking for – that cache value represents work that you don’t have to do for this particular factorial calculation.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Recently I came across an interview question to create a algorithm in any language
Recently I came across following question. I could not figure out the reason.Could anyone
I recently came across the following piece of code. It doesn't look valid because
I recently had to debug a MachO binary and I came across the following
I recently came across Linsched where one can simulate in user-space some of the
I recently came across the following line of code: var type = (typeof x).toLowerCase();
I was recently studying C# where i came across following for loop // Display
Recently I came across a character range that was the following: [/-+] My very
Recently, I was reading 2 books and I came across with the following statements
Recently I came across with the following quiz. Imagine we have this table +--------+

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.