Skip to content

Instantly share code, notes, and snippets.

View santhean's full-sized avatar

Santhiya Theanraj santhean

  • Philadelphia,US
  • 13:10 (UTC -04:00)
View GitHub Profile
@santhean
santhean / optimal_connecting_flight.py
Created December 28, 2025 02:50
Optimal Connecting Flight Search Problem-Heuristic Search
# --- Interactive A* Flight Search ---
# Airports with coordinates
airports = {
'PHL': (39.8719, -75.2411),
'NYC': (40.6413, -73.7781),
'SFO': (37.6213, -122.3790),
'LON': (51.4700, -0.4543),
'DOH': (25.2611, 51.5650),