mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-11-04 14:18:20 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			198 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			198 B
		
	
	
	
		
			Python
		
	
	
	
	
	
'''
 | 
						|
File: queue.py
 | 
						|
Created Time: 2022-11-25
 | 
						|
Author: Krahets (krahets@163.com)
 | 
						|
'''
 | 
						|
 | 
						|
import sys, os.path as osp
 | 
						|
sys.path.append(osp.dirname(osp.dirname(osp.abspath(__file__))))
 | 
						|
from include import *
 | 
						|
 |