mirror of
				https://github.com/autistic-symposium/master-algorithms-py.git
				synced 2025-10-31 14:18:54 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			122 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			122 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/env python3
 | |
| # -*- coding: utf-8 -*-
 | |
| # author: bt3gl
 | |
| 
 | |
| def reverse_array_in_place(array):
 | |
|     return array[::-1]
 | 
