neverjpのぶらり日記

コンピューター関連の記事とぶらりと出かけた先の写真など

2020-04-26から1日間の記事一覧

Python Prog.の復習

N Queens problemのダイクストラの解 ##!/usr/bin/env python3 # Modified this program by S.K on 2020/04/26 """ N queens problem. The (well-known) problem is due to Niklaus Wirth. This solution is inspired by Dijkstra (Structured Programming).…