Reviews 51
Filters:
Rating
Language
Sort:
Most recent

Currently doing a master's here, having not done m...

Currently doing a master's here, having not done my undergraduate studies here. I really like the university. The staff are excellent and the campus is modern and varied. The only problem with maynooth is the traffic. It can be a pain to drive here but sure it's no worse than TCD UCD or DCU.

Great University and probably the most diverse of ...

Great University and probably the most diverse of all. Both modern and old make it a great atmosphere to study in. Going into third year and the experience here has been nothing short of wonderful. Great lecturers and great helpful staff. Wonderful calm atmosphere too. Has to be the most underrated university compared to TCD UCD

BEst University

BEst University

The college ambiance is very good.Best college for studying.one can go in any field and can achieve their dreams in any filed like motor sporting, dancing, singing AND MOST IMPORTANTLY SPORTS

A * \
GRAPH = {\
'Arad': {'Sibiu': 140, 'Zerind': 75, 'Timisoara': 118}, \
'Zerind': {'Arad': 75, 'Oradea': 71}, \
'Oradea': {'Zerind': 71, 'Sibiu': 151}, \
'Sibiu': {'Arad': 140, 'Oradea': 151, 'Fagaras': 99, 'Rimnicu': 80}, \
'Timisoara': {'Arad': 118, 'Lugoj': 111}, \
'Lugoj': {'Timisoara': 111, 'Mehadia': 70}, \
'Mehadia': {'Lugoj': 70, 'Drobeta': 75}, \
'Drobeta': {'Mehadia': 75, 'Craiova': 120}, \
'Craiova': {'Drobeta': 120, 'Rimnicu': 146, 'Pitesti': 138}, \
'Rimnicu': {'Sibiu': 80, 'Craiova': 146, 'Pitesti': 97}, \
'Fagaras': {'Sibiu': 99, 'Bucharest': 211}, \
'Pitesti': {'Rimnicu': 97, 'Craiova': 138, 'Bucharest': 101}, \
'Bucharest': {'Fagaras': 211, 'Pitesti': 101, 'Giurgiu': 90, 'Urziceni': 85}, \
'Giurgiu': {'Bucharest': 90}, \
'Urziceni': {'Bucharest': 85, 'Vaslui': 142, 'Hirsova': 98}, \
'Hirsova': {'Urziceni': 98, 'Eforie': 86}, \
'Eforie': {'Hirsova': 86}, \
'Vaslui': {'Iasi': 92, 'Urziceni': 142}, \
'Iasi': {'Vaslui': 92, 'Neamt': 87}, \
'Neamt': {'Iasi': 87} \
}

def dfs_paths (source, destination, path = None):
"" "All possible paths from source to destination using depth-first search
: param source: Source city name
: param destination: Destination city name
: param path: Current traversed path (Default value = None)
: yields: All possible paths from source to destination
"" "
if path is None:
path = [source]
if source == destination:
yield path
for next_node in set (GRAPH [source] .keys ()) - set (path):
yield from dfs_paths (next_node, destination, path + [next_node])

def ucs (source, destination):
"" "Cheapest path from source to destination using uniform cost search
: param source: Source city name
: param destination: Destination city name
: returns: Cost and path for cheapest traversal
"" "
from queue import PriorityQueue
priority_queue, visited = PriorityQueue (), {}
priority_queue.put ((0, source, [source]))
visited [source] = 0
while not priority_queue.empty ():
(cost, vertex, path) = priority_queue.get ()
if vertex == destination:
return cost, path
for next_node in GRAPH [vertex] .keys ():
current_cost = cost + GRAPH [vertex] [next_node]
if not next_node in visited or visited [next_node]> = current_cost:
visited [next_node] = current_cost
priority_queue.put ((current_cost, next_node, path + [next_node]))

def a_star (source, destination):
"" "Optimal path from source to destination using straight line distance heuristic
: param source: Source city name
: param destination: Destination city name
: returns: Heuristic value, cost and path for optimal traversal
"" "
# HERE THE STRAIGHT LINE DISTANCE VALUES ARE IN REFERENCE TO BUCHAREST AS THE DESTINATION
straight_line = {\
'Arad': 366, \
'Zerind': 374, \
'Oradea': 380, \
'Sibiu': 253, \
'Timisoara': 329, \
'Lugs': 244, \
'Mehadia': 241, \
'Drobeta': 242, \
'Craiova': 160, \
'Rimnicu': 193, \
'Fagaras': 176, \
'Pitesti': 100, \
'Bucharest': 0, \
'Jury': 77, \
'Urziceni': 80, \
'Hirsova': 151, \
'Eforie': 161, \
'Vaslui': 199, \
'Iasi': 226, \
'Neamt': 234 \
}

Good

More pillows would be great.noise levels up tp 3 o...

More pillows would be great.noise levels up tp 3 o clock in the morning and no blind on the window n d bedroom all combined to make this not such a great stay.
Every other time we stayed it was brilliant and that is why we were so disappointed. Tbf breakfast in pugain was lovely.

More

Fantastico...A big hug to the music student who gu...

Fantastico...A big hug to the music student who guided us to the chapel.....Fantastic University. ....in The 22th July at 16.55 pm.Leve my your mail cose I wanna sent to you some fotos. ...John. A hug from Rome.

Friendly campus in the heart of Maynooth town. Goo...

Friendly campus in the heart of Maynooth town. Good atmosphere with on site facilities. Members of staff very friendly and helpful. On site parking for badge holders and pay and display. Walking distance to public transport and shopping centers.

Great labs , but serious lack of communication sci...

Great labs , but serious lack of communication science course needs a new layout with more emphasis on securing employment at the end of the course needs to be more work focused like tallaght i.t nuim is really far behind in my opinion

Good lecture rooms. Poor traffic management during...

Good lecture rooms. Poor traffic management during building works. A new, or more than one, exit/entrance would help. No food cafe all day on Saturday tells teachers and students what is thought of them.