Skip to content

Commit

Permalink
Create allocate_servers.txt hackerearthclub#165
Browse files Browse the repository at this point in the history
Example of a good interview problem
  • Loading branch information
stealthbomber10 authored Oct 21, 2018
1 parent f042397 commit 0dbd75e
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions ASSIGNMENTS/allocate_servers.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# You're running a pool of servers where the servers are numbered sequentially starting from 1. Over time, any given server might explode, in which case its server number is made available for reuse. When a new server is launched, it should be given the lowest available number.

# Write a function which, given the list of currently allocated server numbers, returns the number of the next server to allocate. In addition, you should demonstrate your approach to testing that your function is correct. You may choose to use an existing testing library for your language if you choose, or you may write your own process if you prefer.

# For example, your function should behave something like the following:

# >> next_server_number([5, 3, 1])
# 2
# >> next_server_number([5, 4, 1, 2])
# 3
# >> next_server_number([3, 2, 1])
# 4
# >> next_server_number([2, 3])
# 1
# >> next_server_number([])
# 1


# Server names consist of an alphabetic host type (e.g. "apibox") concatenated with the server number, with server numbers allocated as before (so "apibox1", "apibox2", etc. are valid hostnames).

# Write a name tracking class with two operations, allocate(host_type) and deallocate(hostname). The former should reserve and return the next available hostname, while the latter should release that hostname back into the pool.

# For example:

# >> tracker = Tracker()
# >> tracker.allocate("apibox")
# "apibox1"
# >> tracker.allocate("apibox")
# "apibox2"
# >> tracker.deallocate("apibox1")
# nil
# >> tracker.allocate("apibox")
# "apibox1"
# >> tracker.allocate("sitebox")
# "sitebox1

0 comments on commit 0dbd75e

Please sign in to comment.